aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormegamage <none@none>2009-03-07 10:43:27 -0600
committermegamage <none@none>2009-03-07 10:43:27 -0600
commitf63c07e66975a9f55c0bf5f73a4f2a34bde3e848 (patch)
tree53fbe1a8c0584ddfa124287a363011086b0ccb7d
parent99c765cec321e62fe97e58532544020ec83230e4 (diff)
[7398] Now really really fix error message Author: VladimirMangos
--HG-- branch : trunk
-rw-r--r--src/game/LootMgr.cpp2
-rw-r--r--src/shared/revision_nr.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/game/LootMgr.cpp b/src/game/LootMgr.cpp
index 046fa28f106..100e1b8c33a 100644
--- a/src/game/LootMgr.cpp
+++ b/src/game/LootMgr.cpp
@@ -124,7 +124,7 @@ void LootStore::LoadLootTable()
if(maxcount > std::numeric_limits<uint8>::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<uint8>::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<uint8>::max());
continue; // error already printed to log/console.
}
diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h
index 3323da17142..ffd0c7e3dd3 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__