mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
DB/Conditions: Make gossip options & texts visible if quest is taken or completed
Previously condition CONDITION_QUESTTAKEN (9) was used (checks if quest is taken but NOT completed) while Blizzard always checks only if quest is taken. As result player can see gossip options and texts even if quest is completed but not yet rewarded Please use CONDITION_QUESTSTATE (47) with ConditionValue2 = 10 (taken or completed) in future to make gossip options or texts visible only if quest is taken
This commit is contained in:
2
sql/updates/world/3.3.5/2020_09_16_01_world.sql
Normal file
2
sql/updates/world/3.3.5/2020_09_16_01_world.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
--
|
||||
UPDATE `conditions` SET `ConditionTypeOrReference` = 47, `ConditionValue2` = 10 WHERE `SourceTypeOrReferenceId` IN (14,15) AND `ConditionTypeOrReference` = 9;
|
||||
Reference in New Issue
Block a user