Skip to content

Commit

Permalink
Fix pet icon showing as a bone for skinned pets
Browse files Browse the repository at this point in the history
  • Loading branch information
AzureAaron committed Dec 29, 2024
1 parent 17a6c10 commit 05964f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ protected void updateContent(List<Text> lines) {
addComponent(new PlainTextComponent(line));
continue;
}
String petName = split[1].trim();
String petName = split[1].replace("✦", "").trim();
if (!petName.equals(prevString)) {
icon = ItemRepository.getItemsStream().filter(stack -> {
String trim = stack.getName().getString().trim();
Expand Down

0 comments on commit 05964f3

Please sign in to comment.