diff --git a/SpigotCore_Main/src/SpigotCore.properties b/SpigotCore_Main/src/SpigotCore.properties index 8a7692d..894dbf0 100644 --- a/SpigotCore_Main/src/SpigotCore.properties +++ b/SpigotCore_Main/src/SpigotCore.properties @@ -17,6 +17,8 @@ # along with this program. If not, see . # +COMMAND_SYSTEM_ERROR = §cFehler beim Ausführen des Befehls! + SWLISINV_NEXT_PAGE_ACTIVE = §eSeite vor SWLISINV_NEXT_PAGE_INACTIVE = §7Seite vor SWLISINV_PREVIOUS_PAGE_ACTIVE = §eSeite zurück diff --git a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java index 6d58c5b..2a55d59 100644 --- a/SpigotCore_Main/src/de/steamwar/command/SWCommand.java +++ b/SpigotCore_Main/src/de/steamwar/command/SWCommand.java @@ -19,6 +19,7 @@ package de.steamwar.command; +import de.steamwar.core.Core; import de.steamwar.message.Message; import lombok.Setter; import net.md_5.bungee.api.chat.ClickEvent; @@ -104,6 +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); } throw e; }