No rcon stuff use allowed in matchmode

This commit is contained in:
Richard Allen 2002-08-07 03:49:44 +00:00
parent f790c20ba5
commit 82d3b60e5e
2 changed files with 7 additions and 0 deletions

View File

@ -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

View File

@ -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 <user id> <text>\n");