diff options
author | M. Kristall <mkpdev@gmail.com> | 2009-10-03 12:16:35 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:48 +0000 |
commit | 6c8ce54f94a20e4809368d2788a154c8203ed499 (patch) | |
tree | a9f5748812e6c33952b1be34a62ee61ed363e174 /src/game/g_cmds.c | |
parent | 8d809caefb16b15cb5d5631992dcbc6f1929dce3 (diff) |
* Remove another pointless va()
* g_adminNameProtect is now properly disabled when 0
* Do not remove admins with negative levels (if any such levels exist)
* Fix admin level name alignment in !listplayers and !listadmins
* Fix some !showbans regressions
+ !showbans -1 was showing the last two bans
+ !showbans -1 was not working with only 1 ban
* Fix a ptr error message
Diffstat (limited to 'src/game/g_cmds.c')
-rw-r--r-- | src/game/g_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index c12afd4a..c9bbf465 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -2790,7 +2790,7 @@ void Cmd_PTRCRestore_f( gentity_t *ent ) else { trap_SendServerCommand( ent - g_entities, - va( "print \"\"%d\" is not a valid PTR code\n\"", code ) ); + va( "print \"'%d' is not a valid PTR code\n\"", code ) ); } } |