From 914129912711664fc713e8f974e890601752be06 Mon Sep 17 00:00:00 2001 From: Lillecarl Date: Thu, 19 Jul 2012 23:04:20 +0200 Subject: [PATCH] [12063] Fix Typo in SpellTemplate storage checks --- src/game/ObjectMgr.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index e271df041..98fa6382f 100755 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -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 diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 5981ae3f4..4db5bbc24 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 "12062" + #define REVISION_NR "12063" #endif // __REVISION_NR_H__