[c12554] Correct error output for item_enchantment_template table

This commit is contained in:
Dramacydal 2013-04-18 17:22:15 +04:00 committed by Antz
parent 2be2854ff2
commit 7bdc58625d
2 changed files with 3 additions and 3 deletions

View file

@ -75,10 +75,10 @@ void LoadRandomEnchantmentsTable()
} }
else else
{ {
sLog.outErrorDb("Item Enchantment %u for entry %u has too high or too low chance %f, skipped.", ench, entry, chance); sLog.outErrorDb("Item Enchantment %u for entry %i has too high or too low chance %f, skipped.", ench, entry, chance);
continue; continue;
} }
++count; ++count;
} }

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "12553" #define REVISION_NR "12554"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__