mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-29 20:50:58 +00:00
Warn if the first argument is an option
This commit is contained in:
parent
46fbed8b71
commit
c9aad2d186
1 changed files with 2 additions and 1 deletions
|
@ -1901,7 +1901,8 @@ static void Command_Map_f(void)
|
|||
return;
|
||||
}
|
||||
|
||||
if (COM_Argc() < acceptableargc)
|
||||
/* If the first argument is an option, you fucked up. */
|
||||
if (COM_Argc() < acceptableargc || first_argument == 1)
|
||||
{
|
||||
/* I'm going over the fucking lines and I DON'T CAREEEEE */
|
||||
CONS_Printf("map <name / [MAP]code / number> [-gametype <type>] [-force]:\n");
|
||||
|
|
Loading…
Reference in a new issue