From 426384d59d951159b94dc92abe48160a8a157187 Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Sun, 30 Nov 2025 12:25:24 +0100 Subject: [PATCH] fix(DB/Condition): Solve continuous despawn issue with Alliance Steam Tank. (#23988) --- data/sql/updates/pending_db_world/Steam_tank.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/Steam_tank.sql diff --git a/data/sql/updates/pending_db_world/Steam_tank.sql b/data/sql/updates/pending_db_world/Steam_tank.sql new file mode 100644 index 0000000000..720f5b32e3 --- /dev/null +++ b/data/sql/updates/pending_db_world/Steam_tank.sql @@ -0,0 +1,5 @@ + +-- Event occours only if a player dismount. +DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 22) AND (`SourceGroup` = 6) AND (`SourceEntry` = 27587) AND (`SourceId` = 0) AND (`ElseGroup` = 0) AND (`ConditionTypeOrReference` = 32) AND (`ConditionTarget` = 0) AND (`ConditionValue1` = 16) AND (`ConditionValue2` = 0) AND (`ConditionValue3` = 0); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(22, 6, 27587, 0, 0, 32, 0, 16, 0, 0, 0, 0, 0, '', 'Event occours only if a player dismount.');