Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public static net.md_5.bungee.api.ChatColor getColor(String s) {
- try {
- Class c = net.md_5.bungee.api.ChatColor.class;
- Method m = c.getMethod("of", String.class);
- Object o = m.invoke(null, s);
- return (net.md_5.bungee.api.ChatColor)o;
- }catch (Exception e) {
- return net.md_5.bungee.api.ChatColor.WHITE;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement