diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2010-03-31 20:36:42 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:33 +0000 |
commit | 7fb0c4389dab34e50e8b31997dcb12dff934ed9d (patch) | |
tree | 1ca59ab3298a8ce4baa3f8a0574895d721c1059a /src | |
parent | 8a26228262896a90ccc7411da8972263032daceb (diff) |
* Fix incorrect entitynum logged in destructions by <world> (thanks Rezyn)
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_combat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_combat.c b/src/game/g_combat.c index b33e9bc8..44dfa1c1 100644 --- a/src/game/g_combat.c +++ b/src/game/g_combat.c @@ -1375,7 +1375,7 @@ void G_LogDestruction( gentity_t *self, gentity_t *actor, int mod ) } G_LogPrintf( S_COLOR_YELLOW "Deconstruct: %d %d %s %s: %s %s by %s\n", - actor - g_entities, + actor->client ? actor - g_entities : ENTITYNUM_WORLD, self - g_entities, BG_Buildable( self->s.modelindex )->name, modNames[ mod ], |