Skip to content

Commit

Permalink
Fix ClimbingPick choking and dying (ybw0014 predicted the future)
Browse files Browse the repository at this point in the history
  • Loading branch information
Intybyte committed Jan 9, 2025
1 parent c8f9181 commit 8b50bc3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,9 @@ public List<ItemStack> getDisplayRecipes() {
List<ItemStack> display = new ArrayList<>();

for (Material mat : surfaces.keySet()) {
display.add(new ItemStack(mat));
if (mat.isItem()) {
display.add(new ItemStack(mat));
}
}

return display;
Expand Down

0 comments on commit 8b50bc3

Please sign in to comment.