Skip to content

Commit

Permalink
Release 1.6.0
Browse files Browse the repository at this point in the history
= Quick Fix.
  • Loading branch information
DxsSucuk committed Feb 4, 2022
1 parent bbc81d4 commit 6e17b3c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/de/presti/ree6/main/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,9 @@ public void createCheckerThread() {
}

try {
wait((10 * (60000L)));
} catch (InterruptedException ignore) {
Thread.sleep((10 * (60000L)));
} catch (InterruptedException exception) {
getInstance().getLogger().error("Checker Thread crashed", exception);
}
}
});
Expand Down

0 comments on commit 6e17b3c

Please sign in to comment.