You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public <T extends PacketListener> void scheduleIfPossible(T listener, Packet<T> packet) {
27
28
if (this.closed) {
28
-
throw new RejectedExecutionException("Server already shutting down");
29
+
- throw new RejectedExecutionException("Server already shutting down");
30
+
+ throw new io.papermc.paper.util.ServerStopRejectedExecutionException("Server already shutting down"); // Paper - do not prematurely disconnect players on stop
0 commit comments