diff --git a/src/main/java/wayoftime/bloodmagic/common/tile/TileAlchemicalReactionChamber.java b/src/main/java/wayoftime/bloodmagic/common/tile/TileAlchemicalReactionChamber.java index 6fe286d7cf..16cee24149 100644 --- a/src/main/java/wayoftime/bloodmagic/common/tile/TileAlchemicalReactionChamber.java +++ b/src/main/java/wayoftime/bloodmagic/common/tile/TileAlchemicalReactionChamber.java @@ -466,6 +466,11 @@ public boolean canPlaceItemThroughFace(int index, ItemStack itemStack, Direction @Override public boolean canTakeItemThroughFace(int index, ItemStack stack, Direction direction) { + if (index == ARC_TOOL_SLOT) + { + return true; + } + return index >= OUTPUT_SLOT && index < OUTPUT_SLOT + NUM_OUTPUTS; } @@ -574,4 +579,4 @@ public FluidStack drain(int maxDrain, FluidAction action) } return drainedStack; } -} \ No newline at end of file +}