From 3c88a2c9e9444843f1f77fc204e4ede9bfb027a1 Mon Sep 17 00:00:00 2001 From: Buuz135 Date: Sun, 14 Jan 2024 12:17:38 +0100 Subject: [PATCH] Fixed Extra Slots not being accessible externally, closes #39 --- .../com/buuz135/sushigocrafting/tile/machinery/RollerTile.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/buuz135/sushigocrafting/tile/machinery/RollerTile.java b/src/main/java/com/buuz135/sushigocrafting/tile/machinery/RollerTile.java index 96bbba4..d3d9fb7 100644 --- a/src/main/java/com/buuz135/sushigocrafting/tile/machinery/RollerTile.java +++ b/src/main/java/com/buuz135/sushigocrafting/tile/machinery/RollerTile.java @@ -86,6 +86,7 @@ public RollerTile(BlockPos pos, BlockState state) { return false; }) ); + addInventory(spices); FoodAPI.get().getTypeFromName(this.selected).ifPresent(iFoodType -> { for (int slot = 0; slot < slots.getSlots(); slot++) { slots.setSlotToItemStackRender(slot, iFoodType.getSlotStackRender().apply(slot));