From 9916040c63aa38eeb3b3b58665114d3935892ef0 Mon Sep 17 00:00:00 2001 From: JaTiTV Date: Sat, 31 Dec 2022 02:28:58 +0100 Subject: [PATCH] bugfix by reloadconfig '/t2c reloadconfig' did not give any feedback --- .../net/t2code/t2codelib/SPIGOT/system/cmd/CmdExecuter.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/net/t2code/t2codelib/SPIGOT/system/cmd/CmdExecuter.java b/src/main/java/net/t2code/t2codelib/SPIGOT/system/cmd/CmdExecuter.java index 327e68d..8723408 100644 --- a/src/main/java/net/t2code/t2codelib/SPIGOT/system/cmd/CmdExecuter.java +++ b/src/main/java/net/t2code/t2codelib/SPIGOT/system/cmd/CmdExecuter.java @@ -5,6 +5,7 @@ import net.t2code.t2codelib.SPIGOT.api.update.T2CupdateAPI; import net.t2code.t2codelib.SPIGOT.api.bungeePlayers.T2CbungeePlayers; import net.t2code.t2codelib.T2CupdateObject; import net.t2code.t2codelib.SPIGOT.system.config.config.SelectLibConfig; +import net.t2code.t2codelib.Util; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; @@ -41,6 +42,7 @@ public class CmdExecuter implements CommandExecutor, TabCompleter { return false; case "reloadconfig": SelectLibConfig.onSelect(); + T2Csend.sender(sender, Util.getPrefix() + " ยง2Config successfully reloaded"); return false; case "debug": Commands.debug(sender,args);