diff options
author | Dr-J <daniel.jarrott0@gmail.com> | 2014-11-02 11:10:20 +0000 |
---|---|---|
committer | Dr-J <daniel.jarrott0@gmail.com> | 2014-11-02 11:10:20 +0000 |
commit | dd1e9ecd5aa501f28ad71ae8dd497f591b31f709 (patch) | |
tree | 61f9b213e450be0ba8b030ff63db5aec0babf23c | |
parent | 3f094b9116d934ffeee917b0abf9ccd622381f68 (diff) |
DB/Misc: Put right fieldnae in delete clause which was causing error on apply
-rw-r--r-- | sql/updates/world/2014_11_02_00_world.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/world/2014_11_02_00_world.sql b/sql/updates/world/2014_11_02_00_world.sql index 33eccda9b32..adf9c036723 100644 --- a/sql/updates/world/2014_11_02_00_world.sql +++ b/sql/updates/world/2014_11_02_00_world.sql @@ -1,4 +1,4 @@ -DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceEntry` IN(10111,10028); +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup` IN(10111,10028); INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES (15, 10111, 0, 0, 0, 9, 0, 13145, 0, 0, 0, 0, 0, '', 'Eye of Dominion - Show gossip option only if player has taken The Vile Hold (13145)'), (15, 10111, 0, 0, 1, 9, 0, 13146, 0, 0, 0, 0, 0, '', 'Eye of Dominion - Show gossip option only if player has taken Generosity Abounds (13146)'), |