From 644ceaef07dc0334c2db264b63c486353e569637 Mon Sep 17 00:00:00 2001 From: Richard Allen Date: Sun, 12 May 2002 19:15:47 +0000 Subject: [PATCH] Added playerlist, did some cleanup on votes. --- reaction/cgame/cg_consolecmds.c | 6 +++++- reaction/game/g_cmds.c | 25 +++++++++++++------------ reaction/game/g_teamplay.c | 15 +++++++++++++++ reaction/game/g_teamplay.h | 4 ++++ 4 files changed, 37 insertions(+), 13 deletions(-) diff --git a/reaction/cgame/cg_consolecmds.c b/reaction/cgame/cg_consolecmds.c index 7a11aeb3..d585cdc2 100644 --- a/reaction/cgame/cg_consolecmds.c +++ b/reaction/cgame/cg_consolecmds.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.49 2002/05/12 19:15:47 jbravo +// Added playerlist, did some cleanup on votes. +// // Revision 1.48 2002/05/12 16:10:19 jbravo // Added unignore // @@ -992,10 +995,11 @@ void CG_InitConsoleCommands( void ) { trap_AddCommand ("radio_power"); // JBravo: tkok trap_AddCommand ("tkok"); + trap_AddCommand ("playerlist"); // JBravo: ignore + trap_AddCommand ("ignorenum"); trap_AddCommand ("ignore"); trap_AddCommand ("unignore"); - trap_AddCommand ("ignorenum"); trap_AddCommand ("clearignorelist"); // Slicer: Matchmode trap_AddCommand ("captain"); diff --git a/reaction/game/g_cmds.c b/reaction/game/g_cmds.c index 02daaad8..bf6171a9 100644 --- a/reaction/game/g_cmds.c +++ b/reaction/game/g_cmds.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.110 2002/05/12 19:15:47 jbravo +// Added playerlist, did some cleanup on votes. +// // Revision 1.109 2002/05/12 16:10:19 jbravo // Added unignore // @@ -1705,18 +1708,14 @@ void Cmd_CallVote_f( gentity_t *ent ) { return; } - if ( !Q_stricmp( arg1, "map_restart" ) ) { - } else if ( !Q_stricmp( arg1, "nextmap" ) ) { - } else if ( !Q_stricmp( arg1, "map" ) ) { - } else if ( !Q_stricmp( arg1, "g_gametype" ) ) { - } else if ( !Q_stricmp( arg1, "kick" ) ) { - } else if ( !Q_stricmp( arg1, "clientkick" ) ) { - } else if ( !Q_stricmp( arg1, "g_doWarmup" ) ) { - } else if ( !Q_stricmp( arg1, "timelimit" ) ) { - } else if ( !Q_stricmp( arg1, "fraglimit" ) ) { + if (!Q_stricmp(arg1, "nextmap")) { + } else if (!Q_stricmp(arg1, "map")) { + } else if (!Q_stricmp(arg1, "g_gametype")) { + } else if (!Q_stricmp(arg1, "kick")) { + } else if (!Q_stricmp(arg1, "clientkick")) { } else { trap_SendServerCommand( ent-g_entities, "print \"Invalid vote string.\n\"" ); - trap_SendServerCommand( ent-g_entities, "print \"Vote commands are: map_restart, nextmap, map , g_gametype , kick , clientkick , g_doWarmup, timelimit