SPIGOT-5477: Server not shutting down

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2020-01-12 10:50:22 +11:00
parent e0d3951ff9
commit 420c962ceb

View File

@ -8,3 +8,14 @@
if (t0.a().isConnected()) {
packet.a(t0);
} else {
@@ -23,5 +24,10 @@
});
throw CancelledPacketHandleException.INSTANCE;
}
+ // CraftBukkit start - SPIGOT-5477, MC-142590
+ else if (MinecraftServer.getServer().hasStopped() || (t0 instanceof PlayerConnection && ((PlayerConnection) t0).processedDisconnect)) {
+ throw CancelledPacketHandleException.INSTANCE;
+ }
+ // CraftBukkit end
}
}