From eaa158f7aa3f8da07e9efe25e0ac3adb4c83451e Mon Sep 17 00:00:00 2001 From: Pepich Date: Thu, 2 Feb 2017 19:18:12 +0100 Subject: [PATCH] Fixed formatting error (module name was red instead of green) --- src/com/redstoner/misc/Utils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/redstoner/misc/Utils.java b/src/com/redstoner/misc/Utils.java index 1bf7ba9..9cd4442 100644 --- a/src/com/redstoner/misc/Utils.java +++ b/src/com/redstoner/misc/Utils.java @@ -13,7 +13,7 @@ import net.md_5.bungee.api.ChatColor; /** The utils class containing utility functions. Those include but are not limited to sending formatted messages, broadcasts and more. * * @author Pepich */ -@Version(major = 1, minor = 1, revision = 5, compatible = 1) +@Version(major = 1, minor = 1, revision = 6, compatible = 1) public final class Utils { /** Hidden constructor. Do not instantiate UTILS classes! :) */ @@ -59,7 +59,7 @@ public final class Utils public static void sendMessage(CommandSender recipient, String prefix, String message, char alternateColorCode) { if (prefix == null) - prefix = "§8[§c" + getCaller() + "§8]: "; + prefix = "§8[§2" + getCaller() + "§8]: "; sendMessage(recipient, ChatColor.translateAlternateColorCodes(alternateColorCode, prefix), ChatColor.translateAlternateColorCodes(alternateColorCode, message)); }