diff options
author | SnapperRy <snapperryen@gmail.com> | 2016-09-16 16:59:54 +0200 |
---|---|---|
committer | joschiwald <joschiwald.trinity@gmail.com> | 2017-02-28 20:36:18 +0100 |
commit | 03c2c1429e82aa1704d2b0dfcf408b66887d7be0 (patch) | |
tree | f6a11a3ab6f07758bbb0eae74f98bab1d6741b4d | |
parent | e9b6321e3401468232f1048fe1e148cb27bea8a4 (diff) |
DB/Conditions: allow item Goramosh's Strange Device to also drop if the quest Prevent the Accord is rewarded.
Prevents players from possibly getting permanently locked out of a whole quest chain in Dragonblight.
(cherry picked from commit 48203e2e257057921b24821ff0f9442cc6b15a43)
-rw-r--r-- | sql/updates/world/master/2017_02_28_07_world_2016_09_16_04_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2017_02_28_07_world_2016_09_16_04_world.sql b/sql/updates/world/master/2017_02_28_07_world_2016_09_16_04_world.sql new file mode 100644 index 00000000000..10c2f5b0ae1 --- /dev/null +++ b/sql/updates/world/master/2017_02_28_07_world_2016_09_16_04_world.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=1 AND `SourceEntry` IN (36742, 36746) AND `ElseGroup`=1; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(1, 26349, 36742, 0, 1, 8, 0, 12005, 0, 0, 0, 0, 0, "", "Item 'Goramosh's Strange Device' can drop if quest 'Prevent the Accord' is rewarded"), +(1, 26349, 36746, 0, 1, 8, 0, 12005, 0, 0, 0, 0, 0, "", "Item 'Goramosh's Strange Device' can drop if quest 'Prevent the Accord' is rewarded"); |