13
0
geforkt von Mirrors/Velocity

Fix minor bug with shutdown messages.

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-08-23 21:57:10 -04:00
Ursprung 91265b12a3
Commit e6e3ccaa95

Datei anzeigen

@ -209,7 +209,7 @@ public class VelocityServer implements ProxyServer {
eventManager.fire(new ProxyShutdownEvent());
try {
if (!eventManager.shutdown() || scheduler.shutdown()) {
if (!eventManager.shutdown() || !scheduler.shutdown()) {
logger.error("Your plugins took over 10 seconds to shut down.");
}
} catch (InterruptedException e) {