fully implement resolution in BiomeExtrusionProvider

This commit is contained in:
dfsek
2022-06-15 21:54:47 -07:00
parent c31925f383
commit cfeeb432ea
2 changed files with 16 additions and 17 deletions
@@ -86,9 +86,8 @@ public class BiomePipelineProvider implements BiomeProvider {
z += mutator.noise(seed + 2, x, z) * noiseAmp;
x = FastMath.floorDiv(x, resolution);
z = FastMath.floorDiv(z, resolution);
x /= resolution;
z /= resolution;
int fdX = FastMath.floorDiv(x, pipeline.getSize());
int fdZ = FastMath.floorDiv(z, pipeline.getSize());