diff --git a/reaction/ChangeLog b/reaction/ChangeLog index 150a388e..8a5f536c 100644 --- a/reaction/ChangeLog +++ b/reaction/ChangeLog @@ -26,6 +26,7 @@ * Blocked radio commands during LCA * Added the dynamic radio system * Hacked the bufferedsound system so radio sound overlap less +* No rcon stuff alowed in matchmode # List fixes here for the 2.1 release diff --git a/reaction/game/g_teamplay.c b/reaction/game/g_teamplay.c index ce9bfe41..92d6fb7a 100644 --- a/reaction/game/g_teamplay.c +++ b/reaction/game/g_teamplay.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.127 2002/08/07 03:49:44 jbravo +// No rcon stuff use allowed in matchmode +// // Revision 1.126 2002/08/07 03:35:57 jbravo // Added dynamic radio and stopped all radio usage during lca // @@ -2237,6 +2240,9 @@ void RQ3_Cmd_Stuff(void) char *cmd, user[128]; int len, client; + if (g_RQ3_matchmode.integer) + return; + len = trap_Argc(); if (len < 3) { G_Printf("Usage: stuff \n");