diff --git a/src/com/cnaude/chairs/commands/ChairsCommand.java b/src/com/cnaude/chairs/commands/ChairsCommand.java index a0dd8c2..50fe21a 100644 --- a/src/com/cnaude/chairs/commands/ChairsCommand.java +++ b/src/com/cnaude/chairs/commands/ChairsCommand.java @@ -42,10 +42,10 @@ public class ChairsCommand implements CommandExecutor { Player player = (Player) sender; if (args[0].equalsIgnoreCase("off")) { plugin.sitDisabled.add(player.getName()); - player.sendMessage("Disabled sitting"); + player.sendMessage(plugin.msgDisabled); } else if (args[0].equalsIgnoreCase("on")) { plugin.sitDisabled.remove(player.getName()); - player.sendMessage("Enabled sitting"); + player.sendMessage(plugin.msgDisabled); } } return true;