From 86d582f833d94a59af9a15cdc4f94e030eec799f Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Thu, 7 Jan 2021 23:41:21 +0100 Subject: [PATCH] fix(DB/Update): fix missing delete (#4231) --- data/sql/updates/db_world/2021_01_07_00.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/sql/updates/db_world/2021_01_07_00.sql b/data/sql/updates/db_world/2021_01_07_00.sql index 2fbf449c5..3c33d795c 100644 --- a/data/sql/updates/db_world/2021_01_07_00.sql +++ b/data/sql/updates/db_world/2021_01_07_00.sql @@ -24,7 +24,7 @@ INSERT INTO `gossip_menu` (`MenuID`, `TextID`) VALUES (2406, 3100), (2407, 3101), (2408, 3102); -DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 14 AND `SourceGroup` = 2405; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (14,15) AND `SourceGroup` = 2405; INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES (14, 2405, 3097, 0, 0, 8, 0, 4512, 0, 0, 0, 0, 0, '', 'Show gossip text 3099 if quest \'A Little Slime Goes a Long Way (Part 1)\' is rewarded'), (14, 2405, 3097, 0, 0, 9, 0, 4513, 0, 0, 1, 0, 0, '', 'Show gossip text 3099 if quest \'A Little Slime Goes a Long Way (Part 2)\' is not taken'),