From 07a5c698cacc4fd1b67ad13de37c67b32be2a3ad Mon Sep 17 00:00:00 2001 From: NoFantasy Date: Sun, 17 Jan 2010 10:51:41 +0100 Subject: [PATCH] [9199] Clarify debug log message in GameObject::Use Signed-off-by: NoFantasy --- src/game/GameObject.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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__