diff --git a/src/game/LootMgr.cpp b/src/game/LootMgr.cpp index 85a4b83cf..6743ffe80 100644 --- a/src/game/LootMgr.cpp +++ b/src/game/LootMgr.cpp @@ -996,7 +996,7 @@ bool LootTemplate::HasQuestDropForPlayer(LootTemplateMap const& store, Player co // Now checking groups for (LootGroups::const_iterator i = Groups.begin(); i != Groups.end(); ++i ) - if (i->HasQuestDrop()) + if (i->HasQuestDropForPlayer(player)) return true; return false; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 4a3bedbbe..d1221dcab 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7211" + #define REVISION_NR "7212" #endif // __REVISION_NR_H__