summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPepich <benedikt.abel@yahoo.de>2017-10-13 18:03:40 +0200
committerPepich <benedikt.abel@yahoo.de>2017-10-13 18:03:40 +0200
commitd2810d09f7fae9698dbd8228dff70a8e1e84d4ef (patch)
tree68470084fbc112145455b416939055e4ab532adf
parent5ccfe4b121d4a29fa4d1b8b8880be3bfa756a710 (diff)
Broadcast no longer color translates
-rw-r--r--src/com/redstoner/misc/Utils.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/com/redstoner/misc/Utils.java b/src/com/redstoner/misc/Utils.java
index 937ba1f..0902382 100644
--- a/src/com/redstoner/misc/Utils.java
+++ b/src/com/redstoner/misc/Utils.java
@@ -11,12 +11,10 @@ import org.bukkit.entity.Player;
import com.redstoner.annotations.Version;
-import net.nemez.chatapi.ChatAPI;
-
/** The utils class containing utility functions. Those include but are not limited to sending formatted messages, broadcasts and more.
*
* @author Pepich */
-@Version(major = 4, minor = 0, revision = 0, compatible = 1)
+@Version(major = 4, minor = 0, revision = 1, compatible = 1)
public final class Utils
{
/** The @SimpleDateFormat used for getting the current date. */
@@ -38,7 +36,6 @@ public final class Utils
* @return the amount of people that received the message. */
public static int broadcast(String prefix, String message, BroadcastFilter filter)
{
- message = ChatAPI.colorify(null, message);
if (prefix == null)
prefix = "§8[§2" + getCaller() + "§8]: ";
if (filter == null)