forked from Minecraft/QoL
Added space in death mute message
parent
86419f8772
commit
e9e43b84a7
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue