Warn if gametype number is out of range to map command

This commit is contained in:
James R 2019-11-19 12:32:02 -08:00
parent 9b96964cbb
commit 6ffb18c4b1

View file

@ -1939,6 +1939,17 @@ static void Command_Map_f(void)
d = atoi(gametypename); d = atoi(gametypename);
if (d >= 0 && d < NUMGAMETYPES) if (d >= 0 && d < NUMGAMETYPES)
newgametype = d; newgametype = d;
else
{
CONS_Alert(CONS_ERROR,
"Gametype number %d is out of range. Use a number between"
" 0 and %d inclusive. ...Or just use the name. :v\n",
d,
NUMGAMETYPES-1);
Z_Free(realmapname);
Z_Free(mapname);
return;
}
} }
else else
{ {