Skip to content

Commit

Permalink
Merge pull request #27 from ExternalTime/color-terminal-fix
Browse files Browse the repository at this point in the history
Fixed color terminal solver not working for light blue color
  • Loading branch information
LifeIsAParadox authored Nov 21, 2021
2 parents f80bcc8 + 8553905 commit f04bd9b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public List<ColorHighlight> getColors(String[] groups, Map<Integer, ItemStack> s
for (DyeColor color : DyeColor.values())
colorFromName.put(color.getName().toUpperCase(Locale.ROOT), color);
colorFromName.put("SILVER", DyeColor.LIGHT_GRAY);
colorFromName.put("LIGHT BLUE", DyeColor.LIGHT_BLUE);

itemColor = new HashMap<>();
for (DyeColor color : DyeColor.values())
Expand Down

0 comments on commit f04bd9b

Please sign in to comment.