mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-12-03 17:43:26 +00:00
No rcon stuff use allowed in matchmode
This commit is contained in:
parent
f790c20ba5
commit
82d3b60e5e
2 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue