diff options
author | megamage <none@none> | 2009-05-05 14:49:40 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-05 14:49:40 -0500 |
commit | 138f1fb490f2f4834fd980bfc21d5a386bf26591 (patch) | |
tree | fba53eec244332afb494eb2f6a920cdb67c15d07 /src | |
parent | 52a867bf0a7b92186dfc47f256b38d06fd1ef132 (diff) |
[7774] Fix pet quest giver doesn't update status. Author: daveh
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/QuestHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/QuestHandler.cpp b/src/game/QuestHandler.cpp index 312c9429c9e..65f001aa2f2 100644 --- a/src/game/QuestHandler.cpp +++ b/src/game/QuestHandler.cpp @@ -621,7 +621,7 @@ void WorldSession::HandleQuestgiverStatusQueryMultipleOpcode(WorldPacket& /*recv uint8 questStatus = DIALOG_STATUS_NONE; uint8 defstatus = DIALOG_STATUS_NONE; - if(IS_CREATURE_GUID(*itr)) + if (IS_CREATURE_OR_PET_GUID(*itr)) { // need also pet quests case support Creature *questgiver = ObjectAccessor::GetCreatureOrPetOrVehicle(*GetPlayer(),*itr); |