package net.limework.rediskript.commands; import net.limework.rediskript.RediSkript; import org.bukkit.Bukkit; import org.bukkit.ChatColor; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import org.bukkit.entity.Player; public class CommandReloadRedis implements CommandExecutor { private RediSkript plugin; public CommandReloadRedis(RediSkript plugin) { this.plugin = plugin; } @Override public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) { if (sender instanceof Player) { //not using bungee TextComponent because it is not present in 1.8.8 sender.sendMessage((ChatColor.translateAlternateColorCodes('&' , "&2[&aRediSkript&2] &cThis command can only be executed in console."))); return true; } plugin.getRedisManager().reload(); //not sending to sender, because this command can only be executed via console Bukkit.getLogger().info(ChatColor.translateAlternateColorCodes('&', "&eReloaded channels, encryption and login details!")); return false; } }