mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-23 20:52:16 +00:00
Added MM's ClearScores command as console cmd also
This commit is contained in:
parent
9b2d76a3c6
commit
f2f26ad898
1 changed files with 8 additions and 0 deletions
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.10 2002/06/10 17:40:52 slicer
|
||||
// Added MM's ClearScores command as console cmd also
|
||||
//
|
||||
// Revision 1.9 2002/05/20 04:59:33 jbravo
|
||||
// Lots of small fixes.
|
||||
//
|
||||
|
@ -472,6 +475,11 @@ qboolean ConsoleCommand( void ) {
|
|||
RQ3_Cmd_Stuff();
|
||||
return qtrue;
|
||||
}
|
||||
//sLiCeR: adding a clearScores
|
||||
if (Q_stricmp (cmd, "clearscores") == 0) {
|
||||
MM_ClearScores();
|
||||
return qtrue;
|
||||
}
|
||||
|
||||
if (Q_stricmp (cmd, "listip") == 0) {
|
||||
trap_SendConsoleCommand( EXEC_NOW, "g_banIPs\n" );
|
||||
|
|
Loading…
Reference in a new issue