Stop insertions into Demon Crucible if the inventory is not empty (#1567)

This commit is contained in:
Phil 2019-04-14 11:29:51 -04:00 committed by Nick Ignoffo
parent 7c1565a68c
commit 7c767b3bbf

View file

@ -204,7 +204,7 @@ public class TileDemonCrucible extends TileInventory implements ITickable, IDemo
@Override
public boolean canInsertItem(int index, ItemStack stack, EnumFacing direction) {
return !stack.isEmpty() && (stack.getItem() instanceof IDemonWillGem || stack.getItem() instanceof IDiscreteDemonWill);
return !stack.isEmpty() && inventory.get(0).isEmpty() && (stack.getItem() instanceof IDemonWillGem || stack.getItem() instanceof IDiscreteDemonWill);
}
@Override