Temporarily removed some checks for the alchemy array
This commit is contained in:
parent
f4baaedfab
commit
35b67b6055
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue