mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Display whether Frantic Items is on alongside Gear speed on pause menu.
This commit is contained in:
parent
499fccf061
commit
f18022e9c8
1 changed files with 8 additions and 0 deletions
|
|
@ -6102,6 +6102,14 @@ static char *M_GetGameplayMode(void)
|
||||||
return va("Intense");
|
return va("Intense");
|
||||||
return va("Relaxed");
|
return va("Relaxed");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (franticitems)
|
||||||
|
{
|
||||||
|
if (cv_4thgear.value)
|
||||||
|
return va("4th Gear! Frantic!");
|
||||||
|
else
|
||||||
|
return va("Gear %d - Frantic\n", gamespeed+1);
|
||||||
|
}
|
||||||
|
|
||||||
if (cv_4thgear.value)
|
if (cv_4thgear.value)
|
||||||
return va("4th Gear!");
|
return va("4th Gear!");
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue