mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-24 05:01:24 +00:00
Small fix for the "settings" cmd
This commit is contained in:
parent
f0875aecc6
commit
a0416f5192
1 changed files with 4 additions and 1 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.42 2002/07/04 16:07:54 slicer
|
||||||
|
// Small fix for the "settings" cmd
|
||||||
|
//
|
||||||
// Revision 1.41 2002/07/02 09:51:29 makro
|
// Revision 1.41 2002/07/02 09:51:29 makro
|
||||||
// In-game server info code
|
// In-game server info code
|
||||||
//
|
//
|
||||||
|
@ -4014,7 +4017,7 @@ static void UI_RunMenuScript(char **args)
|
||||||
}
|
}
|
||||||
//Makro - send the matchmode settings to the server
|
//Makro - send the matchmode settings to the server
|
||||||
} else if (Q_stricmp(name, "sendMMsettings") == 0) {
|
} else if (Q_stricmp(name, "sendMMsettings") == 0) {
|
||||||
trap_Cmd_ExecuteText(EXEC_APPEND, va("settings %i %i %i %i %i %i %i %i %i",
|
trap_Cmd_ExecuteText(EXEC_APPEND, va("settings %i %i %i %i %i %i %i %i %i\n",
|
||||||
ui_RQ3_timelimit.integer,
|
ui_RQ3_timelimit.integer,
|
||||||
ui_RQ3_roundlimit.integer,
|
ui_RQ3_roundlimit.integer,
|
||||||
ui_RQ3_roundtimelimit.integer,
|
ui_RQ3_roundtimelimit.integer,
|
||||||
|
|
Loading…
Reference in a new issue