From 797628e7a56bb075fea1dfef09962f0c034eca9e Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Tue, 28 Apr 2026 21:31:13 -0300 Subject: [PATCH] =?UTF-8?q?fix(DB/Conditions):=20Fix=20Eye=20of=20Dominion?= =?UTF-8?q?=20gossip=20not=20being=20offered=20whil=E2=80=A6=20(#25646)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../updates/pending_db_world/rev_1777420384420184300.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1777420384420184300.sql diff --git a/data/sql/updates/pending_db_world/rev_1777420384420184300.sql b/data/sql/updates/pending_db_world/rev_1777420384420184300.sql new file mode 100644 index 000000000..37ff86791 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1777420384420184300.sql @@ -0,0 +1,7 @@ +-- Allow Eye of Dominion (Rise of Suffering, GO 193424 / gossip menu 10111) to +-- show its "Seize control of a Lithe Stalker" gossip option for quest 13160 +-- (Stunning View). Without this row players who have only Stunning View active +-- see no gossip option and cannot progress the quest. +DELETE FROM `conditions` WHERE (`SourceTypeOrReferenceId` = 15) AND (`SourceGroup` = 10111) AND (`SourceEntry` = 0) AND (`SourceId` = 0) AND (`ElseGroup` = 3) AND (`ConditionTypeOrReference` = 9) AND (`ConditionValue1` = 13160); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(15, 10111, 0, 0, 3, 9, 0, 13160, 0, 0, 0, 0, 0, '', 'Show Gossip option only if player has quest Stunning View active');