From 91cbf765c719327d80914cadb5ae9494be3e0c05 Mon Sep 17 00:00:00 2001 From: Pyrox645 <149729052+Pyrox645@users.noreply.github.com> Date: Fri, 3 Nov 2023 01:09:55 +0100 Subject: [PATCH] Arc tools can be extracted from top Added the Arc Tool Slot to the list of slots items can be extracted from. The Patchouli Book already states this is possible. --- .../common/tile/TileAlchemicalReactionChamber.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/wayoftime/bloodmagic/common/tile/TileAlchemicalReactionChamber.java b/src/main/java/wayoftime/bloodmagic/common/tile/TileAlchemicalReactionChamber.java index 6fe286d7c..16cee2414 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 +}