Alchemy Array should only store a max stack size of 1

This commit is contained in:
Nick 2016-02-08 14:41:58 -08:00
parent faf4562df9
commit 5757fab22d

View file

@ -34,6 +34,12 @@ public class TileAlchemyArray extends TileInventory implements ITickable
tagCompound.setInteger("activeCounter", activeCounter);
}
@Override
public int getInventoryStackLimit()
{
return 1;
}
@Override
public void update()
{