Core/Quests: Fix Priest Class quest fix for Night Elf / Dwarf / Undead (by evharten)

Closes #4601
This commit is contained in:
Shocker
2012-01-04 23:56:03 +02:00
parent a7a1b6a312
commit 69a901fe24

View File

@@ -0,0 +1,8 @@
-- [Q] Garments of the Moon (5621) and Garments of the Light (5625)
SET @ENTRY_SHAYA := 12429; -- Sentinel Shaya
SET @ENTRY_DOLF := 12427; -- Mountaineer Dolf
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|8 WHERE `entry` IN (@ENTRY_SHAYA, @ENTRY_DOLF);
-- [Q] Garments of Darkness (5650)
SET @ENTRY_KEL := 12428; -- Deathguard Kel (has to be +8 so in total 36872)
UPDATE `creature_template` SET `unit_flags`=`unit_flags`|8|4096|32768 WHERE `entry` IN (@ENTRY_KEL);