mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-14 17:49:10 +00:00
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 <emirpod02@gmail.com> Co-authored-by: Branel <emirpod02@gmail.com>
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user