Added space in death mute message

master
Joey Hines 2018-10-29 18:25:09 -05:00
parent 86419f8772
commit e9e43b84a7
1 changed files with 2 additions and 2 deletions

View File

@ -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);