odd ocean biome
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
Created Issue:
odd ocean biome
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.
Changed Description:
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
Added Attachments:

Confirmed.
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);
This looks crazy! OMG!
I'm running version 13w25c
i tried it with the same seed as him!
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.
Terrain generation changed.
According to the just released Minecraft Coder pack it is now: -1.0F, 0.1F
so this should still be an issue.