diff options
| author | Pitcrawler <pitcrawler@server.fake> | 2013-06-12 21:15:17 +0200 |
|---|---|---|
| committer | Pitcrawler <pitcrawler@server.fake> | 2013-06-12 21:15:17 +0200 |
| commit | 2f771d4950fd551eeca7d91a49c2dfd7fd48ec6f (patch) | |
| tree | ef1620762c6e7cc41a4e402a6c8aeaefdb0ccbb7 /sql | |
| parent | 1dfda35221ab6cab8d4149d43fb06e0ea88e443e (diff) | |
DB/Quests: Fix Badlands Reagent Run II, closes #9880
Thanks @joschiwald and @Kirkhammett
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2013_06_12_01_world_misc.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/2013_06_12_01_world_misc.sql b/sql/updates/world/2013_06_12_01_world_misc.sql new file mode 100644 index 00000000000..c7b84d811e2 --- /dev/null +++ b/sql/updates/world/2013_06_12_01_world_misc.sql @@ -0,0 +1,13 @@ +-- Fix quest: Badlands Reagent Run II (2203) + +UPDATE `item_loot_template` SET `mincountOrRef`=3, `maxcount`=3 WHERE `item`=7866; + +DELETE FROM `item_loot_template` WHERE `item`=7866 AND `entry`=16883; + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=9712; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,9712,0,31,3,2726,0,0,'','Spell Thaumaturgy Channel targets Scorched Guardian'); + +DELETE FROM `spell_script_names` WHERE `spell_id`=9712; +INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES +(9712,'spell_q2203_thaumaturgy_channel'); |
