Skip to content

Commit

Permalink
Actually there are 10 slots in my autocrafter
Browse files Browse the repository at this point in the history
  • Loading branch information
QPCrummer committed May 27, 2024
1 parent 99c8b42 commit fd94527
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minecraft_version=1.20.6
yarn_mappings=1.20.6+build.1
loader_version=0.15.11
fabric_version=0.97.8+1.20.6
mod_version=1.0.14
mod_version=1.0.15
maven_group=com.github.tatercertified
archives_base_name=fabricautocrafter
modrinth_id=wbqioEpc
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ public class CraftingTableBlockEntity extends LockableContainerBlockEntity imple

public CraftingTableBlockEntity(BlockPos pos, BlockState state) {
super(TYPE, pos, state);
this.inventory = DefaultedList.ofSize(9, ItemStack.EMPTY);

this.inventory = DefaultedList.ofSize(10, ItemStack.EMPTY);
((CraftingInventoryMixin) craftingInventory).setInventory(this.inventory);
}

Expand Down

0 comments on commit fd94527

Please sign in to comment.