/** * This class was created by <TheLoneDevil>. 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 WorldProvider that implements this will not have Botania flowers generated. */ public interface IFlowerlessWorld { /** * @return Should this world be allowed to generate flowers? */ public boolean generateFlowers(World world); }