diff options
author | CraftedRO <CraftedRO@users.noreply.github.com> | 2021-10-29 03:40:00 +0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-03-20 23:47:11 +0100 |
commit | e037dea94e0bad0b6e3acd3099a5394ec09b16ca (patch) | |
tree | c0f34e454f07615583b0040e5127dcdc11f309ad | |
parent | 715b91ff268e070342fdd0580f460e5ee1a78aca (diff) |
DB/Creature: Add correct stealth auras to some creatures
Closes #27202
Closes #27204
(cherry picked from commit a0feb39180d8b5989773174c0da1ce8cdeb89267)
-rw-r--r-- | sql/updates/world/master/2022_03_20_21_world_2021_10_29_00_world.sql | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/world/master/2022_03_20_21_world_2021_10_29_00_world.sql b/sql/updates/world/master/2022_03_20_21_world_2021_10_29_00_world.sql new file mode 100644 index 00000000000..31db9fcdc7b --- /dev/null +++ b/sql/updates/world/master/2022_03_20_21_world_2021_10_29_00_world.sql @@ -0,0 +1,14 @@ +-- Elder Shadowmaw Panther +UPDATE `creature_template_addon` SET `auras` = '7939 22766' WHERE `entry` = 1713; + +-- Wastewander Rogue +DELETE FROM `smart_scripts` WHERE `entryorguid` = 5615 AND `source_type` = 0 AND `id` = 0; + +DELETE FROM `creature_template_addon` WHERE `entry` = 5615; +INSERT INTO `creature_template_addon` (`entry`, `path_id`, `mount`, `MountCreatureID`, `bytes1`, `bytes2`, `emote`, `visibilityDistanceType`, `auras`) VALUES +(5615, 0, 0, 0, 0, 1, 0, 0, '7939 22766'); + +-- Formation members should not have waypoints assigned +DELETE FROM `waypoint_data` WHERE `id` IN (234660,234670); +DELETE FROM `creature_addon` WHERE `guid` IN (SELECT `guid` FROM `creature` WHERE `id` = 5615); +UPDATE `creature` SET `MovementType` = 0 WHERE `guid` IN (23466,23467); |