diff options
author | Google <Google@trinitycore.contrib> | 2011-09-11 20:23:49 +0100 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2011-09-11 20:23:49 +0100 |
commit | 20d351962ff07c20a9170da6f789cf30fd1b780d (patch) | |
tree | 8d54fc42c4c77042530e952f1e88e15b8b1ce0bc | |
parent | 44fffa8b4114d361c6b0ebacffac26aa00d5d2d2 (diff) |
DB/Quests: Fix quest 14076 & 14092
-rw-r--r-- | sql/updates/world/2011_09_11_06_world_spell_conditions.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/2011_09_11_06_world_spell_conditions.sql b/sql/updates/world/2011_09_11_06_world_spell_conditions.sql new file mode 100644 index 00000000000..a4608599452 --- /dev/null +++ b/sql/updates/world/2011_09_11_06_world_spell_conditions.sql @@ -0,0 +1,8 @@ +DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=66512; +INSERT INTO `spell_linked_spell` VALUES +(66512, 66510, 0, 'Summon Deep Jormungar on Pound Drum'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceGroup`=0 AND `SourceEntry`=66512; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13, 0, 66512, 0, 18, 0, 195308, 0, 0, '', 'Pound Drum: Target Mysterious Snow Mound'), +(13, 0, 66512, 0, 18, 0, 195309, 0, 0, '', 'Pound Drum: Target Mysterious Snow Mound'); |