Core/Quests: fixed a typo that was preventing quests with kill credits from being rewarded

This commit is contained in:
Ovahlord
2019-12-25 01:16:04 +01:00
parent 2262bf4b90
commit 8b4a53a34f

View File

@@ -774,7 +774,7 @@ void PlayerMenu::SendQuestGiverRequestItems(Quest const* quest, ObjectGuid npcGU
if (!quest->RequiredNpcOrGo[i])
continue;
if (data.CreatureOrGOCount[i] != quest->RequiredNpcOrGo[i])
if (data.CreatureOrGOCount[i] != quest->RequiredNpcOrGoCount[i])
killCreditObjectiveComplete = false;
}