From 5fb1ee5f2807d39f170e661c6a680366482e0d5d Mon Sep 17 00:00:00 2001 From: yoyosource Date: Fri, 25 Mar 2022 20:39:41 +0100 Subject: [PATCH] Fix SWCommand --- SpigotCore_Main/src/de/steamwar/command/SWCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java index 2a55d59..d530736 100644 --- a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java +++ b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java @@ -105,7 +105,7 @@ public abstract class SWCommand { } catch (CommandFrameworkException e) { if (Bukkit.getServer() != null) { Bukkit.getLogger().log(Level.SEVERE, "", e); - Core.MESSAGE.send("COMMAND_SYSTEM_ERROR", sender); + Core.MESSAGE.sendPrefixless("COMMAND_SYSTEM_ERROR", sender); } throw e; }