BiomesOPlenty/common/biomesoplenty/worldgen/WorldGenLilyflower.java

31 lines
890 B
Java
Raw Normal View History

2013-05-15 12:49:06 +00:00
package biomesoplenty.worldgen;
import java.util.Random;
import net.minecraft.block.Block;
import net.minecraft.world.World;
import net.minecraft.world.gen.feature.WorldGenerator;
import biomesoplenty.api.Blocks;
2013-05-15 12:49:06 +00:00
public class WorldGenLilyflower extends WorldGenerator
{
2013-05-31 10:34:02 +00:00
@Override
public boolean generate(World par1World, Random par2Random, int par3, int par4, int par5)
{
for (int l = 0; l < 10; ++l)
{
int i1 = par3 + par2Random.nextInt(8) - par2Random.nextInt(8);
int j1 = par4 + par2Random.nextInt(4) - par2Random.nextInt(4);
int k1 = par5 + par2Random.nextInt(8) - par2Random.nextInt(8);
2013-05-15 12:49:06 +00:00
2013-05-31 10:34:02 +00:00
if (par1World.isAirBlock(i1, j1, k1) && Block.waterlily.canPlaceBlockAt(par1World, i1, j1, k1))
{
par1World.setBlock(i1, j1, k1, Block.waterlily.blockID, 0, 2);
2013-05-15 12:49:06 +00:00
par1World.setBlock(i1, j1 + 1, k1, Blocks.flowers.get().blockID, 10, 2);
2013-05-31 10:34:02 +00:00
}
}
2013-05-15 12:49:06 +00:00
2013-05-31 10:34:02 +00:00
return true;
}
2013-05-15 12:49:06 +00:00
}