diff options
Diffstat (limited to 'me/Danker/commands/ReloadConfigCommand.java')
-rw-r--r-- | me/Danker/commands/ReloadConfigCommand.java | 3 |
1 files changed, 2 insertions, 1 deletions
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.")); } } |