diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/LootMgr.cpp | 2 | ||||
-rw-r--r-- | src/shared/revision_nr.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/game/LootMgr.cpp b/src/game/LootMgr.cpp index 100acfbc7ab..f3148c09f15 100644 --- a/src/game/LootMgr.cpp +++ b/src/game/LootMgr.cpp @@ -999,7 +999,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 4a3bedbbeab..d1221dcab1c 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__ |