mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-05 00:12:16 +00:00
Auto Roulette Warning
Warn the player that we didn't fucking design an RNG-baed game LOL
This commit is contained in:
parent
56a5f9590d
commit
9ce7520e53
1 changed files with 21 additions and 0 deletions
|
|
@ -210,6 +210,27 @@ static void M_ChangeCvar(INT32 choice)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (cvar == &cv_dummyprofileautoroulette &&
|
||||||
|
// Turning Auto Roulette on
|
||||||
|
cv_dummyprofileautoroulette.value == 1 &&
|
||||||
|
// Not setting to default (ie changing the value)
|
||||||
|
choice != -1)
|
||||||
|
{
|
||||||
|
M_StartMessage(
|
||||||
|
"Turning on Auto Roulette",
|
||||||
|
"\"Ring Racers\" is not designed with random items in mind. With Auto Roulette, you cannot select the item results you want."
|
||||||
|
"\n"
|
||||||
|
"You will be at a distinct \x85" "disadvantage. \x80\n"
|
||||||
|
"\n"
|
||||||
|
"ARE YOU SURE?",
|
||||||
|
M_ChangeCvarResponse,
|
||||||
|
MM_YESNO,
|
||||||
|
NULL,
|
||||||
|
NULL
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
M_ChangeCvarDirect(choice, cvar);
|
M_ChangeCvarDirect(choice, cvar);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue