Skip to content

Commit

Permalink
Increase test delay time. (#7371)
Browse files Browse the repository at this point in the history
apparently 20 ticks wasn't enough

Co-authored-by: Moderocky <admin@moderocky.com>
  • Loading branch information
sovdeeth and Moderocky authored Jan 3, 2025
1 parent 79748d8 commit 264baaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ch/njol/skript/Skript.java
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ protected void afterErrors() {
Bukkit.getServer().shutdown();
}, shutdownDelay.get());
});
}, 20); // 20 ticks is necessary on 1.19.4 to allow the server time to properly load/start ticking, for some reason
}, 50); // 50 ticks is necessary on 1.19.4/1.20.4 to allow the server time to properly load/start ticking, for some reason
}

Skript.metrics = new Metrics(Skript.getInstance(), 722); // 722 is our bStats plugin ID
Expand Down

0 comments on commit 264baaa

Please sign in to comment.