From ccb79737dbcd93dee159761bc3baa92a77b7e986 Mon Sep 17 00:00:00 2001 From: YoyoNow Date: Wed, 17 Dec 2025 21:33:14 +0100 Subject: [PATCH] Fix Core.setServerName --- SpigotCore/SpigotCore_Main/src/de/steamwar/core/Core.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpigotCore/SpigotCore_Main/src/de/steamwar/core/Core.java b/SpigotCore/SpigotCore_Main/src/de/steamwar/core/Core.java index a7ea8b07..e632ca45 100644 --- a/SpigotCore/SpigotCore_Main/src/de/steamwar/core/Core.java +++ b/SpigotCore/SpigotCore_Main/src/de/steamwar/core/Core.java @@ -66,7 +66,7 @@ public class Core extends JavaPlugin { private static String serverName = ""; public static void setServerName(String serverName) { - if (serverName.isEmpty()) { + if (Core.serverName.isEmpty()) { Core.serverName = serverName; } }