I generated a world with the seed "tester" without quotation marks and there is an ocean biome which is grass. I checked all around the area and the biome is ocean. coordinates shown in picture. also sometimes river biomes can generate without any actual rivers
Attachments
Comments 7
in the Minecraft coder pack code (same code, not the same names) it says: .setMinMaxHeight(-1.0F, 0.4F); for the ocean biome and .setMinMaxHeight(-0.5F, 0.0F) for the river biome. I think 1F = 32 blocks and 0 = 64. so this shouldn't occur in river biomes.
to fix: change .setMinMaxHeight(-1.0F, 0.4F); to .setMinMaxHeight(-1.0F, 0.0F);
Is this still a concern in the current Minecraft version? If so, please update the affected versions in order to best aid Mojang ensuring bugs are still valid in the latest releases/pre-releases.
Confirmed.