diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index 93c32f5ca82..0916f15d553 100755 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -7431,13 +7431,13 @@ inline void _DoStringError(int32 entry, char const* text, ...) va_end(ap); if (entry <= MAX_CREATURE_AI_TEXT_STRING_ID) // script library error - sLog.outErrorScriptLib("%s", entry, buf); + sLog.outErrorScriptLib("%s", buf); else if (entry <= MIN_CREATURE_AI_TEXT_STRING_ID) // eventAI error - sLog.outErrorEventAI("%s", entry, buf); + sLog.outErrorEventAI("%s", buf); else if (entry < MIN_DB_SCRIPT_STRING_ID) // mangos string error sLog.outError("%s"); else // if (entry > MIN_DB_SCRIPT_STRING_ID) // DB script text error - sLog.outErrorDb("DB-SCRIPTS: %s", entry, buf); + sLog.outErrorDb("DB-SCRIPTS: %s", buf); } bool ObjectMgr::LoadMangosStrings(DatabaseType& db, char const* table, int32 min_value, int32 max_value, bool extra_content) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 450cb11bef6..f7ed5fbca57 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 "12527" + #define REVISION_NR "12528" #endif // __REVISION_NR_H__