Don't hide ui in break periods when auto isn't active
This commit is contained in:
parent
0ef65e2dd1
commit
7ab4e4263f
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user