diff options
author | nelegalno <nelegalno@yopmail.com> | 2014-07-24 03:24:46 +0100 |
---|---|---|
committer | DDuarte <dnpd.dd@gmail.com> | 2014-07-24 03:25:33 +0100 |
commit | 7524e2dfda499177ffe633bd8284aad2cf1f547f (patch) | |
tree | 5e49a216df59440729ef40333cfefbd1655a82e2 /src | |
parent | 79c83dc4db653744ad9a324d35f37e4fe839a839 (diff) |
Scripts/WesternPlaguelands: Fix conditions to show gossip of Myranda the Hag (In Dreams quest)
Ref #7519
Signed-off-by: DDuarte <dnpd.dd@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp b/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp index 43a66c813a3..0839a476941 100644 --- a/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp +++ b/src/server/scripts/EasternKingdoms/zone_western_plaguelands.cpp @@ -143,7 +143,8 @@ public: player->PrepareQuestMenu(creature->GetGUID()); if (player->GetQuestStatus(QUEST_SUBTERFUGE) == QUEST_STATUS_COMPLETE && - !player->GetQuestRewardStatus(QUEST_IN_DREAMS) && !player->HasAura(SPELL_SCARLET_ILLUSION)) + player->GetQuestStatus(QUEST_IN_DREAMS) != QUEST_STATUS_COMPLETE && + !player->HasAura(SPELL_SCARLET_ILLUSION)) { player->ADD_GOSSIP_ITEM(GOSSIP_ICON_CHAT, GOSSIP_ITEM_ILLUSION, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF + 1); player->SEND_GOSSIP_MENU(4773, creature->GetGUID()); |