1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-28 19:29:14 +00:00

Check if session is closed when running scheduled tasks (#4595)

This commit is contained in:
AJ Ferguson
2024-04-24 01:39:37 -04:00
committed by GitHub
parent c34295829f
commit 16385a4e2b

View File

@@ -1171,7 +1171,9 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource {
public ScheduledFuture<?> scheduleInEventLoop(Runnable runnable, long duration, TimeUnit timeUnit) {
return eventLoop.schedule(() -> {
try {
runnable.run();
if (!closed) {
runnable.run();
}
} catch (Throwable e) {
geyser.getLogger().error("Error thrown in " + this.bedrockUsername() + "'s event loop!", e);
}