Skip to content

Commit

Permalink
Kill console on IOError
Browse files Browse the repository at this point in the history
  • Loading branch information
Birdulon committed Nov 4, 2022
1 parent c926fe3 commit 0fb7d50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/emu/grasscutter/Grasscutter.java
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ public static void startConsole() {
Grasscutter.getLogger().info("EOF detected.");
continue;
} catch (IOError e) {
Grasscutter.getLogger().error("An IO error occurred.", e);
continue;
Grasscutter.getLogger().error("An IO error occurred while trying to read from console.", e);
return;
}

isLastInterrupted = false;
Expand Down

0 comments on commit 0fb7d50

Please sign in to comment.