From c995e148b22ee91da1521c412f3ce70812bc8375 Mon Sep 17 00:00:00 2001 From: Lixfel Date: Mon, 1 Nov 2021 08:26:20 +0100 Subject: [PATCH] Close TinyProtocol on shutdown Signed-off-by: Lixfel --- FightSystem_Core/src/de/steamwar/fightsystem/FightSystem.java | 1 + 1 file changed, 1 insertion(+) diff --git a/FightSystem_Core/src/de/steamwar/fightsystem/FightSystem.java b/FightSystem_Core/src/de/steamwar/fightsystem/FightSystem.java index ee08281..1ef5115 100644 --- a/FightSystem_Core/src/de/steamwar/fightsystem/FightSystem.java +++ b/FightSystem_Core/src/de/steamwar/fightsystem/FightSystem.java @@ -151,6 +151,7 @@ public class FightSystem extends JavaPlugin { @Override public void onDisable() { + ProtocolAPI.tinyProtocol.close(); GlobalRecorder.getInstance().close(); }