mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Check if session is closed when running scheduled tasks (#4595)
This commit is contained in:
parent
c34295829f
commit
16385a4e2b
1 changed files with 3 additions and 1 deletions
|
@ -1171,7 +1171,9 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource {
|
|||
public ScheduledFuture<?> scheduleInEventLoop(Runnable runnable, long duration, TimeUnit timeUnit) {
|
||||
return eventLoop.schedule(() -> {
|
||||
try {
|
||||
if (!closed) {
|
||||
runnable.run();
|
||||
}
|
||||
} catch (Throwable e) {
|
||||
geyser.getLogger().error("Error thrown in " + this.bedrockUsername() + "'s event loop!", e);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue