From b95e3046c0ea990fec9d117f0c2a7bdd611aa102 Mon Sep 17 00:00:00 2001 From: VladimirMangos Date: Sat, 19 Dec 2009 01:29:10 +0300 Subject: [PATCH] [9022] Fixed small typo in creature_template.difficulty_entry_N 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 03046b2a1..476de5f6b 100644 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -504,7 +504,7 @@ void ObjectMgr::LoadCreatureTemplates() if (difficultyEntries[diff].find(i) != difficultyEntries[diff].end()) { - sLog.outErrorDb("Creature (Entry: %u) listed as difficulty %u but have value in `difficulty_entry_1`.", i, diff + 1); + sLog.outErrorDb("Creature (Entry: %u) listed as difficulty %u but have value in `difficulty_entry_%u`.", i, diff + 1, diff + 1); continue; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index bd35fe739..364244d1d 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 "9021" + #define REVISION_NR "9022" #endif // __REVISION_NR_H__