v1.4.0: actually properly fixed the visibility of btnExit

This commit is contained in:
Evan Debenham
2022-09-22 13:51:49 -04:00
parent 08fb99cabd
commit d4b8625d94

View File

@@ -282,7 +282,7 @@ public class HeroSelectScene extends PixelScene {
@Override
public void update() {
super.update();
btnExit.visible = !SPDSettings.intro() || Rankings.INSTANCE.totalNumber > 0;
btnExit.visible = !SPDSettings.intro();
//do not fade when a window is open
for (Object v : members){
if (v instanceof Window) resetFade();