diff --git a/src/game/GameObject.cpp b/src/game/GameObject.cpp index cffe632f7..9cf0a5164 100644 --- a/src/game/GameObject.cpp +++ b/src/game/GameObject.cpp @@ -1305,7 +1305,7 @@ void GameObject::Use(Unit* user) return; } default: - sLog.outDebug("Unknown Object Type %u", GetGoType()); + sLog.outDebug("GameObject::Use unhandled GameObject type %u (entry %u).", GetGoType(), GetEntry()); break; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index fd326059c..01f15ee1b 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 "9198" + #define REVISION_NR "9199" #endif // __REVISION_NR_H__