fix(DB/Conditions): Fix Eye of Dominion gossip not being offered whil… (#25646)
This commit is contained in:
parent
e32249f926
commit
797628e7a5
1 changed files with 7 additions and 0 deletions
|
|
@ -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');
|
||||
Loading…
Add table
Add a link
Reference in a new issue