Skip to content

Commit

Permalink
Fix Croesus Helper (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron committed Aug 6, 2023
1 parent 8e82aba commit 8353ab2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ protected List<ColorHighlight> getColors(String[] groups, Map<Integer, ItemStack
List<ColorHighlight> highlights = new ArrayList<>();
for (Map.Entry<Integer, ItemStack> entry : slots.entrySet()) {
ItemStack stack = entry.getValue();
if (stack != null && stack.getNbt() != null && stack.getNbt().toString().contains("opened")) {
if (stack != null && stack.getNbt() != null && stack.getNbt().toString().contains("No more Chests to open!")) {
highlights.add(ColorHighlight.gray(entry.getKey()));
}
}
Expand Down

0 comments on commit 8353ab2

Please sign in to comment.