mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-11 07:42:15 +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
|
* Blocked radio commands during LCA
|
||||||
* Added the dynamic radio system
|
* Added the dynamic radio system
|
||||||
* Hacked the bufferedsound system so radio sound overlap less
|
* Hacked the bufferedsound system so radio sound overlap less
|
||||||
|
* No rcon stuff alowed in matchmode
|
||||||
|
|
||||||
# List fixes here for the 2.1 release
|
# List fixes here for the 2.1 release
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $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
|
// Revision 1.126 2002/08/07 03:35:57 jbravo
|
||||||
// Added dynamic radio and stopped all radio usage during lca
|
// Added dynamic radio and stopped all radio usage during lca
|
||||||
//
|
//
|
||||||
|
@ -2237,6 +2240,9 @@ void RQ3_Cmd_Stuff(void)
|
||||||
char *cmd, user[128];
|
char *cmd, user[128];
|
||||||
int len, client;
|
int len, client;
|
||||||
|
|
||||||
|
if (g_RQ3_matchmode.integer)
|
||||||
|
return;
|
||||||
|
|
||||||
len = trap_Argc();
|
len = trap_Argc();
|
||||||
if (len < 3) {
|
if (len < 3) {
|
||||||
G_Printf("Usage: stuff <user id> <text>\n");
|
G_Printf("Usage: stuff <user id> <text>\n");
|
||||||
|
|
Loading…
Reference in a new issue