Warn if the first argument is an option

This commit is contained in:
James R 2019-11-12 18:29:42 -08:00
parent 46fbed8b71
commit c9aad2d186
1 changed files with 2 additions and 1 deletions

View File

@ -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");