Allows an Item Handler for null directions in TileInventory
This commit is contained in:
parent
1836fc742d
commit
a019bedd4d
|
@ -312,6 +312,9 @@ public class TileInventory extends TileEntity implements IInventory
|
||||||
case WEST:
|
case WEST:
|
||||||
return (T) handlerWest;
|
return (T) handlerWest;
|
||||||
}
|
}
|
||||||
|
} else if (facing == null && capability == CapabilityItemHandler.ITEM_HANDLER_CAPABILITY)
|
||||||
|
{
|
||||||
|
return (T) handlerDown;
|
||||||
}
|
}
|
||||||
|
|
||||||
return super.getCapability(capability, facing);
|
return super.getCapability(capability, facing);
|
||||||
|
|
Loading…
Reference in a new issue