summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIronClawTrem <louie.nutman@gmail.com>2020-03-03 14:30:23 +0000
committerIronClawTrem <louie.nutman@gmail.com>2020-03-03 14:30:23 +0000
commit14acd967263303905383eea5fadc5ff8b49b7eb1 (patch)
tree46d62cf1781f600dfd3646593477e25f9e1f45b3
parent70144bcabe5185051594292181d6827ab9ae278c (diff)
remove unnecessary args in !showff
-rw-r--r--src/game/g_admin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c
index 444cff6..da6ee30 100644
--- a/src/game/g_admin.c
+++ b/src/game/g_admin.c
@@ -8083,11 +8083,11 @@ qboolean G_admin_showff(gentity_t *ent, int skiparg)
continue;
if (client->pers.teamSelection == PTE_HUMANS)
- Com_sprintf( team, sizeof( team ), "^4H", team);
+ Com_sprintf( team, sizeof( team ), "^4H" );
else if (client->pers.teamSelection == PTE_ALIENS)
- Com_sprintf( team, sizeof( team ), "^1A", team);
+ Com_sprintf( team, sizeof( team ), "^1A" );
else
- Com_sprintf( team, sizeof( team ), "^3S", team);
+ Com_sprintf( team, sizeof( team ), "^3S" );
ffpct = calc_ff_pct(&client->pers.statscounters);
ADMBP(va("%2d %s ^1%3d%% ^7%s^7\n", i, team, ffpct, client->pers.netname));