mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-19 00:31:10 +00:00
Warn if gametype number is out of range to map command
(cherry picked from commit 6ffb18c4b157f9efecec6a104ef930dd71f8b986)
This commit is contained in:
parent
401f30f27d
commit
e5fa66a2a9
1 changed files with 11 additions and 0 deletions
|
@ -2672,6 +2672,17 @@ static void Command_Map_f(void)
|
|||
d = atoi(gametypename);
|
||||
if (d >= 0 && d < NUMGAMETYPES)
|
||||
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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue