From a0feb39180d8b5989773174c0da1ce8cdeb89267 Mon Sep 17 00:00:00 2001 From: CraftedRO Date: Fri, 29 Oct 2021 03:40:00 +0300 Subject: DB/Creature: Add correct stealth auras to some creatures Closes #27202 Closes #27204 --- sql/updates/world/3.3.5/2021_10_29_00_world.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 sql/updates/world/3.3.5/2021_10_29_00_world.sql (limited to 'sql/updates') diff --git a/sql/updates/world/3.3.5/2021_10_29_00_world.sql b/sql/updates/world/3.3.5/2021_10_29_00_world.sql new file mode 100644 index 00000000000..31db9fcdc7b --- /dev/null +++ b/sql/updates/world/3.3.5/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); -- cgit v1.2.3