[9199] Clarify debug log message in GameObject::Use

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2010-01-17 10:51:41 +01:00
parent 8a03785470
commit 07a5c698ca
2 changed files with 2 additions and 2 deletions

View file

@ -1305,7 +1305,7 @@ void GameObject::Use(Unit* user)
return; return;
} }
default: default:
sLog.outDebug("Unknown Object Type %u", GetGoType()); sLog.outDebug("GameObject::Use unhandled GameObject type %u (entry %u).", GetGoType(), GetEntry());
break; break;
} }

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9198" #define REVISION_NR "9199"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__