Updated the Filtered Item Routing Nodes' GUI so that it behaved less like ass. Also added the necessary nbt porting code.

This commit is contained in:
WayofTime 2016-08-30 21:12:40 -04:00
parent 7d690ad598
commit 413b150142
5 changed files with 64 additions and 13 deletions

View file

@ -26,7 +26,7 @@ import WayofTime.bloodmagic.util.helper.TextHelper;
public class TileInventory extends TileEntity implements IInventory
{
protected int[] syncedSlots = new int[0];
private ItemStack[] inventory;
protected ItemStack[] inventory;
private int size;
private String name;
@ -38,7 +38,7 @@ public class TileInventory extends TileEntity implements IInventory
initializeItemHandlers();
}
private boolean isSyncedSlot(int slot)
protected boolean isSyncedSlot(int slot)
{
for (int s : this.syncedSlots)
{