diff --git a/src/main/java/umpaz/brewinandchewin/common/block/entity/KegBlockEntity.java b/src/main/java/umpaz/brewinandchewin/common/block/entity/KegBlockEntity.java index 89ddb50d..834311fa 100644 --- a/src/main/java/umpaz/brewinandchewin/common/block/entity/KegBlockEntity.java +++ b/src/main/java/umpaz/brewinandchewin/common/block/entity/KegBlockEntity.java @@ -339,8 +339,8 @@ private boolean processFermenting(KegFermentingRecipe recipe, KegBlockEntity keg if (slotStack.hasCraftingRemainingItem()) { ejectIngredientRemainder(slotStack.getCraftingRemainingItem()); } - if (!slotStack.isEmpty()) - slotStack.shrink(1); + + inventory.extractItem(i, 1, false); } return true; }