diff --git a/src/game/ObjectMgr.cpp b/src/game/ObjectMgr.cpp index ba420cfa2..7c0ade98b 100644 --- a/src/game/ObjectMgr.cpp +++ b/src/game/ObjectMgr.cpp @@ -4701,14 +4701,16 @@ void ObjectMgr::LoadInstanceTemplate() MapEntry const* parentEntry = sMapStore.LookupEntry(temp->parent); if (!parentEntry) { - sLog.outErrorDb("ObjectMgr::LoadInstanceTemplate: bad parent map id for instance template %d template!", parentEntry,temp->map); + sLog.outErrorDb("ObjectMgr::LoadInstanceTemplate: bad parent map id for instance template %d template!", + parentEntry->MapID, temp->map); const_cast(temp)->parent = 0; continue; } if (parentEntry->IsContinent()) { - sLog.outErrorDb("ObjectMgr::LoadInstanceTemplate: parent point to continent map id %u for instance template %d template, ignored, need be set only for non-continent parents!", parentEntry->MapID,temp->map); + sLog.outErrorDb("ObjectMgr::LoadInstanceTemplate: parent point to continent map id %u for instance template %d template, ignored, need be set only for non-continent parents!", + parentEntry->MapID,temp->map); const_cast(temp)->parent = 0; continue; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 785b6280d..a6337c174 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 "9776" + #define REVISION_NR "9777" #endif // __REVISION_NR_H__