[7212] Fixed check possibility quest drop present in loot template for player in case groupped loot. By VladimirMangos.

--HG--
branch : trunk
This commit is contained in:
megamage
2009-02-01 16:30:14 -06:00
parent 7d855bec0a
commit d79d9f044e
2 changed files with 2 additions and 2 deletions

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "7211"
#define REVISION_NR "7212"
#endif // __REVISION_NR_H__