summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPepich <benedikt.abel@yahoo.de>2017-06-12 16:18:29 +0200
committerPepich <benedikt.abel@yahoo.de>2017-06-12 16:18:29 +0200
commit25294b4e5f9ea1c64d7c3e671839844f09444ff5 (patch)
tree4cb2ba8e7e2b6ec9aff3feccf14939329b07bb2d
parentf82e5412853c93d535345a3c29217f3e2b58bafa (diff)
Switched to bukkit ChatColor instead of Bungee
-rw-r--r--src/com/redstoner/misc/Utils.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/com/redstoner/misc/Utils.java b/src/com/redstoner/misc/Utils.java
index 01eeea8..973f31f 100644
--- a/src/com/redstoner/misc/Utils.java
+++ b/src/com/redstoner/misc/Utils.java
@@ -4,6 +4,7 @@ import java.text.SimpleDateFormat;
import java.util.Date;
import org.bukkit.Bukkit;
+import org.bukkit.ChatColor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
@@ -11,12 +12,10 @@ import com.redstoner.annotations.Debugable;
import com.redstoner.annotations.Version;
import com.redstoner.coremods.debugger.Debugger;
-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 = 3, revision = 7, compatible = 1)
+@Version(major = 1, minor = 3, revision = 8, compatible = 1)
public final class Utils
{
/** The SimpleDateFormat used for getting the current date. */