diff options
| author | megamage <none@none> | 2009-03-07 10:43:27 -0600 |
|---|---|---|
| committer | megamage <none@none> | 2009-03-07 10:43:27 -0600 |
| commit | f63c07e66975a9f55c0bf5f73a4f2a34bde3e848 (patch) | |
| tree | 53fbe1a8c0584ddfa124287a363011086b0ccb7d /src/game | |
| parent | 99c765cec321e62fe97e58532544020ec83230e4 (diff) | |
[7398] Now really really fix error message Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/game')
| -rw-r--r-- | src/game/LootMgr.cpp | 2 |
1 files changed, 1 insertions, 1 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. } |
