mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-09 10:29:45 +01:00
Don't gray out invincibility/slowdown in intermission
When I re-enabled them for intermissions earlier, I forgot to un-gray them out.
This commit is contained in:
parent
e85d5a8714
commit
3f077ee56a
1 changed files with 2 additions and 2 deletions
|
@ -7214,8 +7214,8 @@ void Game::createmenu( enum Menu::MenuName t, bool samemenu/*= false*/ )
|
|||
option("animated backgrounds");
|
||||
option("screen effects");
|
||||
option("text outline");
|
||||
option("invincibility", !ingame_titlemode || !inspecial());
|
||||
option("slowdown", !ingame_titlemode || !inspecial());
|
||||
option("invincibility", !ingame_titlemode || (!game.insecretlab && !game.intimetrial && !game.nodeathmode));
|
||||
option("slowdown", !ingame_titlemode || (!game.insecretlab && !game.intimetrial && !game.nodeathmode));
|
||||
option("load screen");
|
||||
option("room name bg");
|
||||
option("return");
|
||||
|
|
Loading…
Reference in a new issue