diff options
author | ModoX <moardox@gmail.com> | 2022-11-12 21:24:41 +0100 |
---|---|---|
committer | ModoX <moardox@gmail.com> | 2022-11-12 21:24:41 +0100 |
commit | 1d632365e9bf6987bdf15c54bbed02d2694430fe (patch) | |
tree | 5504e27704c1d81c75e9ba107bad4d0d2316759a | |
parent | 83a8a540aa38413e531a3f3527c0044f3055b5dc (diff) |
DB/Stormwind: Fixed equipment id of previous Patroller and range of greeting scripts
* ef80d79950f7a7f8b506c3d4f8b8edb170e247f5 followup
* 83a8a540aa38413e531a3f3527c0044f3055b5dc followup
-rw-r--r-- | sql/updates/world/master/2022_11_12_19_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_11_12_19_world.sql b/sql/updates/world/master/2022_11_12_19_world.sql new file mode 100644 index 00000000000..9fdf5a08638 --- /dev/null +++ b/sql/updates/world/master/2022_11_12_19_world.sql @@ -0,0 +1,5 @@ +-- reduce greetings range +UPDATE `smart_scripts` SET `event_param2`=9 WHERE `entryorguid` IN(4981,1341,1333,1324,1275,1286,1295,1299,1319) AND `source_type`=0 AND `id`=0 AND `event_type`=10; +-- fix equip +UPDATE `smart_scripts` SET `action_param1`=4 WHERE `entryorguid`=197600 AND `source_type`=9 AND `id`=3; +UPDATE `creature` SET `equipment_id`=4 WHERE `guid`=313937; |