Skip to content

Commit

Permalink
Change: the game no longer pauses in the GUI when you're in singleplayer
Browse files Browse the repository at this point in the history
* This should fix an issue with auto-placer
  • Loading branch information
Zailer43 committed Sep 8, 2024
1 parent edcef08 commit e81a7de
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/fzmm/zailer/me/client/gui/BaseFzmmScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,11 @@ public boolean charTyped(char chr, int modifiers) {
return this.symbolChatCompat.charTyped(chr, modifiers);
}

@Override
public boolean shouldPause() {
return false;
}

public SymbolChatCompat getSymbolChatCompat() {
return this.symbolChatCompat;
}
Expand Down

0 comments on commit e81a7de

Please sign in to comment.