diff --git a/src/main/java/com/simibubi/create/content/redstone/thresholdSwitch/ThresholdSwitchBlockEntity.java b/src/main/java/com/simibubi/create/content/redstone/thresholdSwitch/ThresholdSwitchBlockEntity.java index 83b72b6a2e..689c72cb8c 100644 --- a/src/main/java/com/simibubi/create/content/redstone/thresholdSwitch/ThresholdSwitchBlockEntity.java +++ b/src/main/java/com/simibubi/create/content/redstone/thresholdSwitch/ThresholdSwitchBlockEntity.java @@ -125,7 +125,7 @@ public void updateCurrentLevel() { invVersionTracker.awaitNewVersion(inv); for (StorageView view : inv) { ItemStack stackInSlot = view.getResource().toStack(); - long space = Math.min(stackInSlot.getMaxStackSize(), view.getCapacity()); + long space = view.getCapacity(); long count = view.getAmount(); if (space == 0) continue;