public static final int BREEDING_CHANCE = 10;
public Aspect getAspectDropped(World world, int x, int y, int z, int metadata) {
Aspect currentAspect = getAspect(world, x, y, z);
if (metadata >= 7 && currentAspect != null) {
if (world.getTileEntity(x, y - 1, z) instanceof TileInfusedFarmland) {
AspectList farmlandAspectList = ((TileInfusedFarmland) world.getTileEntity(x, y - 1, z)).aspectList;
for (Aspect aspect : farmlandAspectList.getAspects()) {
Random rand = new Random();