diff --git a/src/game/LootMgr.cpp b/src/game/LootMgr.cpp index b3dbc8d97..2cd7f212e 100644 --- a/src/game/LootMgr.cpp +++ b/src/game/LootMgr.cpp @@ -1220,10 +1220,12 @@ void LoadLootTemplates_QuestMail() if(!itr->second->GetRewMailTemplateId()) continue; - if(!ids_set.count(itr->first)) - LootTemplates_QuestMail.ReportNotExistedId(itr->first); - else + if(ids_set.count(itr->first)) ids_set.erase(itr->first); + /* disabled reporting: some quest mails not include items + else + LootTemplates_QuestMail.ReportNotExistedId(itr->first); + */ } // output error for any still listed (not referenced from appropriate table) ids diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 8994f3273..fa6fa3152 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 "7131" + #define REVISION_NR "7132" #endif // __REVISION_NR_H__