Fixed Network Tool crashing on null ItemStacks.

This commit is contained in:
Gunther De Wachter
2017-06-30 18:35:38 +02:00
parent 16a0872d06
commit 76f17ba53c
3 changed files with 3 additions and 3 deletions
@@ -63,7 +63,7 @@ public class AENetworkProxy implements IGridBlock
private final String nbtName; // name
private AEColor myColor = AEColor.TRANSPARENT;
private NBTTagCompound data = null; // input
private ItemStack myRepInstance;
private ItemStack myRepInstance = ItemStack.EMPTY;
private boolean isReady = false;
private IGridNode node = null;
private EnumSet<EnumFacing> validSides;