Skip to content

Commit

Permalink
fix element.color with a name
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Nov 4, 2019
1 parent a088f67 commit 812fab9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -501,7 +501,7 @@ public static void registerTags() {
}
if (color == null) {
try {
color = ChatColor.valueOf(colorName);
color = ChatColor.valueOf(colorName.toUpperCase());
}
catch (IllegalArgumentException ex) {
if (!attribute.hasAlternative()) {
Expand Down

0 comments on commit 812fab9

Please sign in to comment.