remove unneeded resolution application

This commit is contained in:
dfsek
2022-06-15 23:38:29 -07:00
parent 9081f3a004
commit c83924a7a4

View File

@@ -26,14 +26,6 @@ public class BiomeExtrusionProvider implements BiomeProvider {
@Override
public Biome getBiome(int x, int y, int z, long seed) {
x /= resolution;
y /= resolution;
z /= resolution;
x *= resolution;
y *= resolution;
z *= resolution;
Biome delegated = delegate.getBiome(x, y, z, seed);
for(Extrusion extrusion : extrusions) {