From 951f0a660f14176b94f50ca50ecc7801ad096539 Mon Sep 17 00:00:00 2001 From: bowser0000 Date: Mon, 13 Jul 2020 20:22:26 -0400 Subject: Add two spaces to slayer drops In my defence, it looks like one space in chat. --- me/Danker/commands/ReloadConfigCommand.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'me/Danker/commands') diff --git a/me/Danker/commands/ReloadConfigCommand.java b/me/Danker/commands/ReloadConfigCommand.java index 4eda66b..122f1c1 100644 --- a/me/Danker/commands/ReloadConfigCommand.java +++ b/me/Danker/commands/ReloadConfigCommand.java @@ -6,6 +6,7 @@ import net.minecraft.command.CommandException; import net.minecraft.command.ICommandSender; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.util.ChatComponentText; +import net.minecraft.util.EnumChatFormatting; public class ReloadConfigCommand extends CommandBase { @@ -29,7 +30,7 @@ public class ReloadConfigCommand extends CommandBase { final EntityPlayer player = (EntityPlayer)arg0; final ConfigHandler cf = new ConfigHandler(); cf.reloadConfig(); - player.addChatMessage(new ChatComponentText("Reloaded config.")); + player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Reloaded config.")); } } -- cgit