Skip to content

Commit

Permalink
fix: ignore Infinityboom TNT in Item Pickup Log
Browse files Browse the repository at this point in the history
  • Loading branch information
Fix3dll committed Dec 4, 2024
1 parent 113c2ca commit bc0104e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,9 @@ public void updateWithItem(ItemStack itemStack) {
} else if (ItemUtils.isQuiverArrow(itemStack)) {
// Ignore quiver arrow
return;
} else if ("INFINITE_SUPERBOOM_TNT".equals(skyblockId)) {
// Ignore Infinityboom TNT
return;
}

int amount;
Expand Down

0 comments on commit bc0104e

Please sign in to comment.