Skip to content

Commit

Permalink
fix: frosted ice cannot be item anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
StarWishsama committed Oct 19, 2024
1 parent 5caab10 commit 5e8d700
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,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 5e8d700

Please sign in to comment.