aboutsummaryrefslogtreecommitdiff
path: root/me/Danker/commands/ReloadConfigCommand.java
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2020-07-13 20:22:26 -0400
committerbowser0000 <bowser0000@gmail.com>2020-07-13 20:22:26 -0400
commit951f0a660f14176b94f50ca50ecc7801ad096539 (patch)
treeabef98d9ec00c640d339903147afa2f9a6e4560e /me/Danker/commands/ReloadConfigCommand.java
parent8ce07f5b4b4c7d8cef95dd613885e5219ce6a6a2 (diff)
downloadSkyblockMod-951f0a660f14176b94f50ca50ecc7801ad096539.tar.gz
SkyblockMod-951f0a660f14176b94f50ca50ecc7801ad096539.tar.bz2
SkyblockMod-951f0a660f14176b94f50ca50ecc7801ad096539.zip
Add two spaces to slayer dropsv1.4.2
In my defence, it looks like one space in chat.
Diffstat (limited to 'me/Danker/commands/ReloadConfigCommand.java')
-rw-r--r--me/Danker/commands/ReloadConfigCommand.java3
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."));
}
}