We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e72cdb6 commit 95a6097Copy full SHA for 95a6097
modules/RoyalCommands/src/main/java/org/royaldev/royalcommands/RUtils.java
@@ -706,7 +706,7 @@ public static String getMVWorldName(World w) {
706
if (w == null) throw new NullPointerException("w can't be null!");
707
if (!Config.multiverseNames || RoyalCommands.mvc == null)
708
return RoyalCommands.wm.getConfig().getString("worlds." + w.getName() + ".displayname", w.getName());
709
- return RoyalCommands.mvc.getApi().getWorldManager().getWorld(w).get().getAlias();
+ return RUtils.colorize(RoyalCommands.mvc.getApi().getWorldManager().getWorld(w).get().getAlias());
710
}
711
712
public static String getBiomeName(Biome b) {
0 commit comments