Fix facade recipes. Hopefully the last null check fix.

This commit is contained in:
Gunther De Wachter
2017-06-27 20:39:06 +02:00
parent b819fe4adb
commit 61b81fc802
52 changed files with 101 additions and 83 deletions
@@ -430,7 +430,7 @@ public final class ContainerInterfaceTerminal extends AEBaseContainer
@Override
public boolean isItemValid( final ItemStack itemstack )
{
return itemstack != null && itemstack.getItem() instanceof ItemEncodedPattern;
return !itemstack.isEmpty() && itemstack.getItem() instanceof ItemEncodedPattern;
}
}
}