diff options
author | M. Kristall <mkpdev@gmail.com> | 2009-10-28 15:03:04 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:09 +0000 |
commit | e3cfb28d459a57050a764e8048626497f4553b4d (patch) | |
tree | 3c478181b962e54c71adb9070ecd7804364809ea /src/game/g_admin.c | |
parent | b7c3532092b803945e539ef71a976bbaae793500 (diff) |
* Stop using numeric constants in logs because they are unreliable (log parsers
will need to be updated)
Diffstat (limited to 'src/game/g_admin.c')
-rw-r--r-- | src/game/g_admin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c index 96531621..1e613e44 100644 --- a/src/game/g_admin.c +++ b/src/game/g_admin.c @@ -606,7 +606,7 @@ void G_admin_authlog( gentity_t *ent ) ent->client->pers.admin->flags, ( level ) ? level->flags : "" ); - G_LogPrintf( "AdminAuth: %i \"%s" S_COLOR_WHITE "\": \"%s" S_COLOR_WHITE + G_LogPrintf( "AdminAuth: %i \"%s" S_COLOR_WHITE "\" \"%s" S_COLOR_WHITE "\" [%d] (%s): %s\n", ent - g_entities, ent->client->pers.netname, ent->client->pers.admin->name, ent->client->pers.admin->level, |