diff options
| author | Machiavelli <machiavelli.trinity@gmail.com> | 2011-09-24 13:12:01 +0200 |
|---|---|---|
| committer | Machiavelli <machiavelli.trinity@gmail.com> | 2011-09-24 13:13:15 +0200 |
| commit | 911c7ce3cce9d032346b689e935fd72a39c184ee (patch) | |
| tree | 791bf47b8c7d48336c8ac5a1b3f072812ab1e9f5 /sql | |
| parent | 29ba648fa3aa052f34e3069105d05b62cebf9b2e (diff) | |
Scripts/Ulduar/Flame Leviathan: Fix RX-214 Repair-o-matic station.
Note: Due to an aura system bug, the dummy cooldown aura is refreshed every time the trap spell is cast instead of expiring like it should.
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2011_09_24_00_world_spell_script_names.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/world/2011_09_24_00_world_spell_script_names.sql b/sql/updates/world/2011_09_24_00_world_spell_script_names.sql new file mode 100644 index 00000000000..d0f5b286739 --- /dev/null +++ b/sql/updates/world/2011_09_24_00_world_spell_script_names.sql @@ -0,0 +1,7 @@ +-- Remove redundant areatrigger scripts +DELETE FROM `areatrigger_scripts` WHERE `entry` IN(5369,5423); +-- Add spellscript for trap spell +DELETE FROM `spell_script_names` WHERE `spell_id`=62705; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(62705,'spell_auto_repair'); + |
