From 74254be06ca766cf7f08ad6b84702a44dd49c282 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Tue, 18 Sep 2001 00:05:45 +0000 Subject: Switch to TA ui stuff --- src/game/g_cmds.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/game') diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index f2f7ff4d..f77fd7e1 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -27,7 +27,7 @@ #include "g_local.h" -#include "../ta_ui/menudef.h" // for the voice chats +#include "../../ui/menudef.h" // for the voice chats /* ================== @@ -623,11 +623,11 @@ void Cmd_Team_f( gentity_t *ent ) { return; } - if(!Q_stricmp(s, "0")) + if( !Q_stricmp( s, "0" ) || !Q_stricmp( s, "spectate" ) ) ent->client->pers.pteam = PTE_NONE; - else if(!Q_stricmp(s, "1")) + else if( !Q_stricmp( s, "1" ) || !Q_stricmp( s, "aliens" ) ) ent->client->pers.pteam = PTE_DROIDS; - else if(!Q_stricmp(s, "2")) + else if( !Q_stricmp( s, "2" ) || !Q_stricmp( s, "humans" ) ) ent->client->pers.pteam = PTE_HUMANS; if( oldTeam != ent->client->pers.pteam ) -- cgit