From e9e43b84a758b8d01794cf8726d41ac3a3878cc5 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Mon, 29 Oct 2018 18:25:09 -0500 Subject: [PATCH] Added space in death mute message --- src/main/java/xyz/etztech/qol/commands/DeathMuteCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);