diff --git a/src/quest_loot_party.cpp b/src/quest_loot_party.cpp index 5128bc3..b7b3927 100644 --- a/src/quest_loot_party.cpp +++ b/src/quest_loot_party.cpp @@ -29,7 +29,12 @@ class PlayerLootParty : public PlayerScript { if (sConfigMgr->GetOption("QuestParty.Enable", false)) { - item.freeforall = true; + ItemTemplate const* itemTemplate = sObjectMgr->GetItemTemplate(item.itemid); + + if (itemTemplate->Quality == ITEM_QUALITY_NORMAL) + { + item.freeforall = true; + } } } };