diff --git a/src/main/java/xyz/etztech/qol/commands/DeathMuteCommand.java b/src/main/java/xyz/etztech/qol/commands/DeathMuteCommand.java index 2e5fe47..49c9926 100644 --- a/src/main/java/xyz/etztech/qol/commands/DeathMuteCommand.java +++ b/src/main/java/xyz/etztech/qol/commands/DeathMuteCommand.java @@ -43,9 +43,9 @@ public class DeathMuteCommand implements CommandExecutor { final Player player = argPlayer; if (QoL.addDeathMute(player)) { - message = ChatColor.GREEN + "Muting death messages from" + ChatColor.YELLOW + player.getName(); + message = ChatColor.GREEN + "Muting death messages from " + ChatColor.YELLOW + player.getName(); } else { - message = ChatColor.GREEN + "Unmuting death messages from" + ChatColor.YELLOW + player.getName(); + message = ChatColor.GREEN + "Unmuting death messages from " + ChatColor.YELLOW + player.getName(); } EtzTechUtil.sms(commandSender, message);