mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-19 03:45:43 +00:00
12
data/sql/updates/db_world/2025_10_16_00.sql
Normal file
12
data/sql/updates/db_world/2025_10_16_00.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
-- DB update 2025_10_14_00 -> 2025_10_16_00
|
||||
-- 53 WP_START
|
||||
-- update previous parameter run = 1 to forcedMovement = 2 (run)
|
||||
update `smart_scripts` set `action_param1` = 2 where `action_type` = 53 and `action_param1` = 1;
|
||||
-- update previous parameter run = 0 to forcedMovement = 1 (walk)
|
||||
update `smart_scripts` set `action_param1` = 1 where `action_type` = 53 and `action_param1` = 0;
|
||||
|
||||
-- 113 START_CLOSEST_WAYPOINT
|
||||
-- update previous parameter run = 1 to forcedMovement = 2 (run)
|
||||
update `smart_scripts` set `action_param4` = 2 where `action_type` = 113 and `action_param4` = 1;
|
||||
-- update previous parameter run = 0 to forcedMovement = 1 (walk)
|
||||
update `smart_scripts` set `action_param4` = 1 where `action_type` = 113 and `action_param4` = 0;
|
||||
Reference in New Issue
Block a user