/**
* second Part of Structure generating, this for example places Spiderwebs, Mob Spawners, it closes
* Mineshafts at the end, it adds Fences...
*/
public boolean addComponentParts(World p_74875_1_, Random p_74875_2_, StructureBoundingBox p_74875_3_)
{
Block block = this.func_151558_b(Blocks.gravel, 0);
for (int i = this.boundingBox.minX; i <= this.boundingBox.maxX; ++i)
{
for (int j = this.boundingBox.minZ; j <= this.boundingBox.maxZ; ++j)
{
if (p_74875_3_.isVecInside(i, 64, j))
{
int k = p_74875_1_.getTopSolidOrLiquidBlock(i, j) - 1;
p_74875_1_.setBlock(i, k, j, block, 0, 2);
}
}
}
return true;
}
StructureVillagePieces.java 文件源码
java
阅读 32
收藏 0
点赞 0
评论 0
项目:PopularMMOS-EpicProportions-Mod
作者:
评论列表
文章目录