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:
parent
3f6da61535
commit
6196e68a84
1 changed files with 11 additions and 0 deletions
|
|
@ -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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue