From 477de5dcc2525db42768dedddc43b40247d7af61 Mon Sep 17 00:00:00 2001 From: patou01 <2592673+patou01@users.noreply.github.com> Date: Sat, 6 Nov 2021 10:26:43 +0100 Subject: [PATCH] fix(DB/creatures): UBRS stealthed mobs issues (#8858) --- .../pending_db_world/rev_1635700076222913000.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1635700076222913000.sql diff --git a/data/sql/updates/pending_db_world/rev_1635700076222913000.sql b/data/sql/updates/pending_db_world/rev_1635700076222913000.sql new file mode 100644 index 000000000..00de9fbe7 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1635700076222913000.sql @@ -0,0 +1,10 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1635700076222913000'); + +-- remove sneak from iron guard +DELETE FROM `creature_addon` WHERE `guid` = 137990; +INSERT INTO `creature_addon` (`guid`, `path_id`, `mount`, `bytes1`, `bytes2`, `emote`, `isLarge`, `auras`) VALUES +(137990, 1379900, 0, 0, 1, 0, 0, ''); + +-- remove "remove sneak" from assassin, this way they drop the sneak on attacking +UPDATE `creature_template` SET `AIName` = 'SmartAI' WHERE `entry` = 10318; +DELETE FROM `smart_scripts` WHERE `entryorguid` = 10318 AND `source_type` = 0 AND `id` = 1;