utils code for plugin minecraft

Solutions on MaxInterview for utils code for plugin minecraft by the best coders in the world

showing results for - "utils code for plugin minecraft"
Kyra
24 Jan 2020
1package ____________;
2
3import org.bukkit.ChatColor;
4
5public class Utils {
6
7    public  static String chat (String s) {
8        return ChatColor.translateAlternateColorCodes('&', s);
9    }
10
11}