summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinenash <minenash@protonmail.com>2019-01-03 22:49:44 -0500
committerMinenash <minenash@protonmail.com>2019-01-03 22:49:44 -0500
commit4922bb4aeadab209051a24fa2219caace5e91e2b (patch)
tree974ad9f4ec23f2bca1f03846a22c2a806d7cdef7
parent25c330e4ef4328a86208e84dd9c09aa4b1041d65 (diff)
Fixed world name not being colored yellow in WorldBorder's postEnable
-rw-r--r--src/main/java/com/redstoner/modules/worldborder/WorldBorder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/redstoner/modules/worldborder/WorldBorder.java b/src/main/java/com/redstoner/modules/worldborder/WorldBorder.java
index 43f300b..c8da4c3 100644
--- a/src/main/java/com/redstoner/modules/worldborder/WorldBorder.java
+++ b/src/main/java/com/redstoner/modules/worldborder/WorldBorder.java
@@ -112,7 +112,7 @@ public class WorldBorder implements Module, Listener {
String world = (String) o;
WorldBorderInfo info = WorldBorderInfo.fromJSONObject((JSONObject) j.get(world));
borderInfos.put(world, info);
- getLogger().info("Loaded world, " + world + ", with the boarder " + info.getMessage());
+ getLogger().info("Loaded world, &e" + world + "&7, with the boarder " + info.getMessage());
}
}