From cdaf8655c910e79d963be068434b197656feebd1 Mon Sep 17 00:00:00 2001 From: Gultask <100873791+Gultask@users.noreply.github.com> Date: Fri, 19 Dec 2025 00:16:00 -0300 Subject: [PATCH] fix(DB/Conditions): Do not allow players to spellclick Goblin Sappers (#24160) --- .../sql/updates/pending_db_world/rev_1766089848113030100.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1766089848113030100.sql diff --git a/data/sql/updates/pending_db_world/rev_1766089848113030100.sql b/data/sql/updates/pending_db_world/rev_1766089848113030100.sql new file mode 100644 index 000000000..0c683ef23 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1766089848113030100.sql @@ -0,0 +1,5 @@ +-- +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 18 AND `SourceGroup` IN (29433, 29555) AND `SourceEntry` = 47020; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(18, 29433, 47020, 0, 0, 31, 0, 3, 0, 0, 0, 0, 0, '', 'Only Backpacks can mount Goblin Sappers'), +(18, 29555, 47020, 0, 0, 31, 0, 3, 0, 0, 0, 0, 0, '', 'Only Backpacks can mount Goblin Sappers');