Possible build upload script fix

This commit is contained in:
Anuken
2018-02-20 19:40:19 -05:00
parent d52d9bec81
commit f2a952fcfe
3 changed files with 6 additions and 5 deletions

View File

@@ -354,7 +354,7 @@ public class Control extends Module{
if(!state.is(State.menu)){
input.update();
if(Inputs.keyTap("pause") && !ui.restart.isShown() && !Net.active() && (state.is(State.paused) || state.is(State.playing))){
if(Inputs.keyTap("pause") && !ui.restart.isShown() && (state.is(State.paused) || state.is(State.playing))){
state.set(state.is(State.playing) ? State.paused : State.playing);
}