Use ChatColor library for color char

This commit is contained in:
Fabrizio La Rosa 2020-06-21 19:53:00 +02:00
parent db8dbeff4c
commit 2638a3a896

View File

@ -212,6 +212,6 @@ public class Scoreboard {
displayLine = me.clip.placeholderapi.PlaceholderAPI.setPlaceholders(player, displayLine);
}
return displayLine.replace("§", "&"); // Returning unformatted line to avoid issues in next step
return displayLine.replace(String.valueOf(ChatColor.COLOR_CHAR), "&"); // Returning unformatted line to avoid issues in next step
}
}