Minor cleanup

This commit is contained in:
Frank 2021-12-04 14:08:54 +01:00
parent 1841bad98f
commit 30bc61a43a
2 changed files with 0 additions and 3 deletions

View file

@ -138,7 +138,6 @@ public class BiomeAPI {
NETHER_BIOME_PICKER.addBiome(biome); NETHER_BIOME_PICKER.addBiome(biome);
Random random = new Random(biome.getID().hashCode()); Random random = new Random(biome.getID().hashCode());
//TODO: 1.18 Check parameters, depth was previously called altitude
//temperature, humidity, continentalness, erosion, depth, weirdness, offset //temperature, humidity, continentalness, erosion, depth, weirdness, offset
Climate.ParameterPoint parameters = Climate.parameters( Climate.ParameterPoint parameters = Climate.parameters(
MHelper.randRange(-1.5F, 1.5F, random), MHelper.randRange(-1.5F, 1.5F, random),

View file

@ -49,8 +49,6 @@ public class SimpleLeavesBlock extends BaseBlockNotFull implements RenderLayerPr
public SimpleLeavesBlock(BlockBehaviour.Properties properties) { public SimpleLeavesBlock(BlockBehaviour.Properties properties) {
super(properties); super(properties);
// TODO handle all tags instead of adding them like this
TagAPI.addTags(this, TagAPI.BLOCK_LEAVES);
} }
@Override @Override