Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ public ItemStack craft(CraftingInventory craftingInventory) {
}
}

@Environment(EnvType.CLIENT)
public boolean fits(int width, int height) {
return width * height >= 2;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public ItemStack craft(CraftingInventory craftingInventory) {
}
}

@Environment(EnvType.CLIENT)
@Override
public boolean fits(int width, int height) {
return width * height >= 2;
}
Expand Down