[12063] Fix Typo in SpellTemplate storage checks

This commit is contained in:
Lillecarl 2012-07-19 23:04:20 +02:00 committed by Schmoozerd
parent aeff8f9d1a
commit 9141299127
2 changed files with 2 additions and 2 deletions

View file

@ -6864,7 +6864,7 @@ void ObjectMgr::LoadSpellTemplate()
// insert serverside spell data
if (sSpellStore.GetNumRows() <= i)
{
sLog.outErrorDb("Loading Spell Template for spell %u, index out of bounds (max = %)", i, sSpellStore.GetNumRows());
sLog.outErrorDb("Loading Spell Template for spell %u, index out of bounds (max = %u)", i, sSpellStore.GetNumRows());
continue;
}
else

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "12062"
#define REVISION_NR "12063"
#endif // __REVISION_NR_H__