Removed tested ToDo's
This commit is contained in:
parent
33d8fe86fd
commit
ef02d0ee5f
13 changed files with 9 additions and 26 deletions
|
@ -34,7 +34,6 @@ public class BiomeIslandFeature extends DefaultFeature {
|
|||
BlockPos surfacePos = new BlockPos(pos.getX(), pos.getY()-dist, pos.getZ());
|
||||
BlockState topMaterial = EndBiome.findTopMaterial(world, surfacePos);;
|
||||
|
||||
//TODO: 1.18 the block selection should be based on the surface rules of the biome
|
||||
if (BlocksHelper.isFluid(topMaterial)) {
|
||||
topBlock = Blocks.GRAVEL.defaultBlockState();
|
||||
underBlock = Blocks.STONE.defaultBlockState();
|
||||
|
|
|
@ -76,8 +76,7 @@ public class SulphuricLakeFeature extends DefaultFeature {
|
|||
else {
|
||||
if (!isAbsoluteBorder(world, POS)) {
|
||||
BlocksHelper.setWithoutUpdate(world, POS, Blocks.WATER);
|
||||
//TODO: 1.18 check if this ticks
|
||||
world./*getLiquidTicks().*/scheduleTick(POS, Fluids.WATER, 0);
|
||||
world.scheduleTick(POS, Fluids.WATER, 0);
|
||||
brimstone.add(POS.below());
|
||||
if (random.nextBoolean()) {
|
||||
brimstone.add(POS.below(2));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue