mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'numlaps-msg-begone' into 'master'
Numlaps Message Begone See merge request KartKrew/Kart!2222
This commit is contained in:
commit
e44661817b
1 changed files with 9 additions and 2 deletions
|
|
@ -7216,9 +7216,16 @@ void NumLaps_OnChange(void)
|
||||||
CONS_Printf(M_GetText("Number of laps have been set to %d.\n"), numlaps);
|
CONS_Printf(M_GetText("Number of laps have been set to %d.\n"), numlaps);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else if (Playing())
|
||||||
{
|
{
|
||||||
CONS_Printf(M_GetText("Number of laps will be set to %d next round.\n"), cv_numlaps.value);
|
if (cv_numlaps.value == -1)
|
||||||
|
{
|
||||||
|
CONS_Printf(M_GetText("Number of laps will be the map default next round.\n"));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
CONS_Printf(M_GetText("Number of laps will be set to %d next round.\n"), cv_numlaps.value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue