From 6196e68a84cafffbc7d37d0d28bb09ecb0c33f4c Mon Sep 17 00:00:00 2001 From: Necropola Date: Fri, 21 May 2021 20:04:19 +0200 Subject: [PATCH] fix(DB/creature,SAI): Silvermane Stalkers: grey -> black, no fade (#5875) * fix(DB/creature,SAI): Silvermane Stalkers: grey -> black, no fade - Closes #5847 - Closes https://github.com/chromiecraft/chromiecraft/issues/645 * Remove space at end of line * Show nameplate Co-authored-by: Branel Co-authored-by: Branel --- .../pending_db_world/rev_1621105426491747047.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1621105426491747047.sql diff --git a/data/sql/updates/pending_db_world/rev_1621105426491747047.sql b/data/sql/updates/pending_db_world/rev_1621105426491747047.sql new file mode 100644 index 000000000..d4f249dfd --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1621105426491747047.sql @@ -0,0 +1,11 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1621105426491747047'); + +-- Remove id=1: Silvermane Stalker - On Reset - Cast Faded (6408) at 100% chance (No Repeat) +DELETE FROM `smart_scripts` WHERE `entryorguid`=2926 AND `id`=1; + +-- The `creature_template` table does already have the updated (black) modelid (9562), +-- but the `creature` table (spawns) does not. Change modelid: 11418 --> 9562 +UPDATE `creature` SET `modelid`=9562 WHERE `id`=2926; + +-- Show nameplate (thanks, @Branel): Change bytes1: 131072 -> 0 +UPDATE `creature_template_addon` SET `bytes1`=0 WHERE `entry`=2926;