diff options
author | Tartalo <none@none> | 2010-06-30 19:39:14 +0200 |
---|---|---|
committer | Tartalo <none@none> | 2010-06-30 19:39:14 +0200 |
commit | 83c037a33895a02543de2ba1c2f50258d23e23c7 (patch) | |
tree | 8fff6d5a76ad164ebbe7d09be49de3b412d607ea | |
parent | 9a91e70f05c3d4b80e70494464b93585dc0c8596 (diff) |
Fix sql from rev 8806 for the new conditions system
--HG--
branch : trunk
-rw-r--r-- | sql/updates/8806_spell_script_target.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/updates/8806_spell_script_target.sql b/sql/updates/8806_spell_script_target.sql index e84bfcc83d9..5e16f32166a 100644 --- a/sql/updates/8806_spell_script_target.sql +++ b/sql/updates/8806_spell_script_target.sql @@ -1,5 +1,5 @@ -- Limit Flame Tsunami buff to Lava Blazes only -DELETE FROM spell_script_target WHERE entry = 60430; -INSERT INTO spell_script_target (entry, type, targetEntry) VALUES - (60430, 1, 30643), - (60430, 1, 31317); +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=60430; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceEntry`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`) VALUES +(13,60430,18,1,30643), +(13,60430,18,1,31317); |