Core/Scripts: Fixed Supremus encounter (#18234)

Core/Scripts: Fixed Supremus encounter

(cherry picked from commit 51507efd01)
This commit is contained in:
Keader
2016-11-25 22:42:56 -02:00
committed by joschiwald
parent 95ca7b11d0
commit aab6416e64
2 changed files with 94 additions and 103 deletions

View File

@@ -0,0 +1,6 @@
-- Fixed speed for Supremus
UPDATE `creature_template` SET `speed_walk`=2.4, `speed_run`=2.14286 WHERE `entry`=22898;
-- Added unit_flag UNIT_FLAG_NOT_SELECTABLE in Supremus Volcano
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|33554432 WHERE `entry`=23085;
-- Updated script name of creature Molten Flame
UPDATE `creature_template` SET `ScriptName`='npc_molten_flame' WHERE `entry`=23095;