Don't hide ui in break periods when auto isn't active

This commit is contained in:
yugecin 2016-10-02 10:47:48 +02:00
parent 0ef65e2dd1
commit 7ab4e4263f

View File

@ -457,7 +457,7 @@ public class Game extends BasicGameState {
g.fillRect(0, height * 0.875f, width, height * 0.125f); g.fillRect(0, height * 0.875f, width, height * 0.125f);
} }
if (!Dancer.hideui && GameMod.AUTO.isActive()) { if (!Dancer.hideui || !GameMod.AUTO.isActive()) {
data.drawGameElements(g, true, objectIndex == 0); data.drawGameElements(g, true, objectIndex == 0);
} }