diff options
| author | Shocker <shocker@freakz.ro> | 2012-01-04 23:56:03 +0200 |
|---|---|---|
| committer | Shocker <shocker@freakz.ro> | 2012-01-04 23:56:03 +0200 |
| commit | 69a901fe243726a770e70225650109a2fac38890 (patch) | |
| tree | dee1da66498ecfa9f0f724829e7fa51477c3228f | |
| parent | a7a1b6a312a4174fa97e34bdcd6f7f8c59005e85 (diff) | |
Core/Quests: Fix Priest Class quest fix for Night Elf / Dwarf / Undead (by evharten)
Closes #4601
| -rw-r--r-- | sql/updates/world/2012_01_04_04_world_creature_template.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/2012_01_04_04_world_creature_template.sql b/sql/updates/world/2012_01_04_04_world_creature_template.sql new file mode 100644 index 00000000000..6131c439fdb --- /dev/null +++ b/sql/updates/world/2012_01_04_04_world_creature_template.sql @@ -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); |
