diff options
| author | Warpten <vertozor@gmail.com> | 2013-04-09 16:11:45 -0700 |
|---|---|---|
| committer | Warpten <vertozor@gmail.com> | 2013-04-09 16:11:45 -0700 |
| commit | 65ecb27a6e3f74bcc47bb1d8433589ce527e050c (patch) | |
| tree | ddd01b6decdbd5e24b0f2b498cd95d1a44193cc8 /sql | |
| parent | 5de7bf1f177302180a12cc5898cdecc14b47f91e (diff) | |
| parent | 895a4dd35286aed905c19ae0583d762e8d693256 (diff) | |
Merge pull request #9009 from Souler/fix_mage_rof
[4.3.4] Spells/Mage: Ring of Frost
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2013_01_26_01_world_misc_434.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/2013_01_26_01_world_misc_434.sql b/sql/updates/world/2013_01_26_01_world_misc_434.sql new file mode 100644 index 00000000000..2abe6090c3f --- /dev/null +++ b/sql/updates/world/2013_01_26_01_world_misc_434.sql @@ -0,0 +1,7 @@ +DELETE FROM `spell_script_names` WHERE `spell_id` IN (82676, 82691); +INSERT INTO `spell_script_names`(`spell_id`, `ScriptName`) VALUES +(82676, 'spell_mage_ring_of_frost'), +(82691, 'spell_mage_ring_of_frost_freeze'); + +-- Set flags UNIT_FLAG_DISABLE_MOVE| UNIT_FLAG_STUNNED|UNIT_FLAG_NOT_SELECTABLE on Ring of Frost +UPDATE `creature_template` SET `unit_flags` = 0x4|0x40000|0x2000000 WHERE `entry` = 44199; |
