/** * This class was created by <SpitefulFox>. It's distributed as * part of the Botania Mod. Get the Source Code in github: * https://github.com/Vazkii/Botania * * Botania is Open Source and distributed under the * Botania License: http://botaniamod.net/license.php * * File Created @ [? (GMT)] */ package vazkii.botania.api.item; import net.minecraft.world.World; /** * A BiomeGenBase that implements this will not have Botania flowers generated. */ public interface IFlowerlessBiome { /** * @return Should this world be allowed to generate flowers? */ public boolean canGenerateFlowers(World world, int x, int z); }