Merge branch 'numlaps-msg-begone' into 'master'

Numlaps Message Begone

See merge request KartKrew/Kart!2222
This commit is contained in:
James R. 2024-04-04 03:50:44 +00:00
commit e44661817b

View file

@ -7216,11 +7216,18 @@ 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 if (Playing())
{
if (cv_numlaps.value == -1)
{
CONS_Printf(M_GetText("Number of laps will be the map default next round.\n"));
}
else else
{ {
CONS_Printf(M_GetText("Number of laps will be set to %d next round.\n"), cv_numlaps.value); CONS_Printf(M_GetText("Number of laps will be set to %d next round.\n"), cv_numlaps.value);
} }
} }
}
void KartFrantic_OnChange(void); void KartFrantic_OnChange(void);
void KartFrantic_OnChange(void) void KartFrantic_OnChange(void)