2013-08-09 01:52:02 +00:00
|
|
|
package biomesoplenty.worldgen;
|
|
|
|
|
|
|
|
import java.util.Random;
|
2013-09-14 23:01:07 +00:00
|
|
|
|
2013-08-09 01:52:02 +00:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraft.world.gen.feature.WorldGenerator;
|
|
|
|
|
|
|
|
public class WorldGenBOPPumpkin extends WorldGenerator
|
|
|
|
{
|
2013-08-16 10:00:45 +00:00
|
|
|
@Override
|
|
|
|
public boolean generate(World par1World, Random par2Random, int par3, int par4, int par5)
|
2013-08-09 01:52:02 +00:00
|
|
|
{
|
|
|
|
for (int l = 0; l < 64; ++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);
|
|
|
|
|
|
|
|
if (par1World.isAirBlock(i1, j1, k1) && par1World.getBlockId(i1, j1 - 1, k1) == Block.grass.blockID && Block.pumpkin.canPlaceBlockAt(par1World, i1, j1, k1))
|
|
|
|
{
|
|
|
|
par1World.setBlock(i1, j1, k1, Block.pumpkin.blockID, 15, 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|