From 67f307d5f79e24bbd40f5e19944d81bb682cd9cf Mon Sep 17 00:00:00 2001 From: VladimirMangos Date: Sat, 7 Mar 2009 10:50:23 +0300 Subject: [PATCH] [7398] Now really really fix error message :/ --- src/game/LootMgr.cpp | 2 +- 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 9571bc358..a190a058a 100644 --- a/src/game/LootMgr.cpp +++ b/src/game/LootMgr.cpp @@ -121,7 +121,7 @@ void LootStore::LoadLootTable() if(maxcount > std::numeric_limits::max()) { - sLog.outErrorDb("Table '%s' entry %d item %d: maxcount value (%u) to large. must be less %u - skipped", GetName(), entry, maxcount,std::numeric_limits::max()); + sLog.outErrorDb("Table '%s' entry %d item %d: maxcount value (%u) to large. must be less %u - skipped", GetName(), entry, item, maxcount,std::numeric_limits::max()); continue; // error already printed to log/console. } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 3323da171..ffd0c7e3d 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 "7397" + #define REVISION_NR "7398" #endif // __REVISION_NR_H__