mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-03 01:41:15 +00:00
Permit re-entering the Tutorial Challenge if the full game is accessible to you
This commit is contained in:
parent
050bf43a87
commit
d41188ded3
1 changed files with 5 additions and 1 deletions
|
|
@ -4331,7 +4331,11 @@ void G_NextLevel(void)
|
|||
if (
|
||||
gametype == GT_TUTORIAL
|
||||
&& nextmap == NEXTMAP_TUTORIALCHALLENGE
|
||||
&& !(gamedata && gamedata->enteredtutorialchallenge)
|
||||
&& (
|
||||
!gamedata
|
||||
|| gamedata->enteredtutorialchallenge == false
|
||||
|| M_GameTrulyStarted() == true
|
||||
)
|
||||
)
|
||||
{
|
||||
nextmap = G_MapNumber(tutorialchallengemap);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue