mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Prevent selecting Secret Lab if game isn't at full speed
The game won't let you select the Secret Lab if you're in invincibility mode, probably so you can't set illegitimate Super Gravitron records just by standing there and doing nothing. However, for some reason, it'll still let you select the Secret Lab even if you've slowed down the game. For consistency, let's prevent selecting the Secret Lab if the game isn't running at fullspeed, too.
This commit is contained in:
parent
d9d0748ce3
commit
38d749f536
1 changed files with 1 additions and 1 deletions
|
@ -917,7 +917,7 @@ void menuactionpress()
|
|||
}
|
||||
else if (game.currentmenuoption == 1 && game.unlock[8])
|
||||
{
|
||||
if(!map.invincibility){
|
||||
if(!map.invincibility && game.slowdown == 30){
|
||||
game.mainmenu = 11;
|
||||
graphics.fademode = 2;
|
||||
}else{
|
||||
|
|
Loading…
Reference in a new issue