From 35b67b60550506ea7659fb341a49888271f57236 Mon Sep 17 00:00:00 2001 From: WayofTime Date: Tue, 5 Jan 2016 14:52:04 -0500 Subject: [PATCH] Temporarily removed some checks for the alchemy array --- .../java/WayofTime/bloodmagic/block/BlockAlchemyArray.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyArray.java b/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyArray.java index 735448e2..6a03ab1e 100644 --- a/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyArray.java +++ b/src/main/java/WayofTime/bloodmagic/block/BlockAlchemyArray.java @@ -63,10 +63,10 @@ public class BlockAlchemyArray extends BlockContainer if (playerItem != null) { - if (array.getStackInSlot(0) == null && AlchemyArrayRecipeRegistry.getRecipeForInput(playerItem) != null) + if (array.getStackInSlot(0) == null) { Utils.insertItemToTile(array, player, 0); - } else if (array.getStackInSlot(0) != null && AlchemyArrayRecipeRegistry.getAlchemyArrayEffect(array.getStackInSlot(0), playerItem) != null) + } else if (array.getStackInSlot(0) != null) { Utils.insertItemToTile(array, player, 1); array.attemptCraft();