summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristopher Schwarz <lakitu7@gmail.com>2010-04-12 00:53:09 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:35 +0000
commitbd8cbb10216e31fbb76154485877b7edf35782cf (patch)
tree22eab88c18e8ea3e1b4af9f81318fd4777c92cc3 /src
parent24734eb5cfedeeded9c0dfc7e96d30063fe3dad5 (diff)
* Create new bans at the bottom of the list, so that ban ordering in showbans is always sequential (thanks msk, Rezyn)
Diffstat (limited to 'src')
-rw-r--r--src/game/g_admin.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c
index 476450fd..7d5e123d 100644
--- a/src/game/g_admin.c
+++ b/src/game/g_admin.c
@@ -1294,9 +1294,6 @@ static qboolean admin_create_ban( gentity_t *ent,
for( b = g_admin_bans; b; b = b->next )
{
- if( b->expires != 0 && b->expires <= t )
- break;
-
if( !b->next )
break;
}