From 21f6f58f2a8aba580f6b34be71a2928d857d205c Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Thu, 20 Jan 2011 06:35:32 +0000 Subject: * Do not enforce the teamchange timer when cheats are enabled (devmap) --- src/game/g_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game') diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index c4025ced..06363c7a 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -540,7 +540,7 @@ void Cmd_Team_f( gentity_t *ent ) // stop switching teams for gameplay exploit reasons by enforcing a long // wait before they can come back - if( !force && ent->client->pers.aliveSeconds && + if( !force && !g_cheats.integer && ent->client->pers.aliveSeconds && level.time - ent->client->pers.teamChangeTime < 30000 ) { trap_SendServerCommand( ent-g_entities, -- cgit