This commit is contained in:
paulevsGitch 2021-05-04 13:35:11 +03:00
parent 43d4dd6adc
commit 5e9ecc8c3c
2 changed files with 31 additions and 6 deletions

View file

@ -95,6 +95,9 @@ public class BetterEndBiomeSource extends BiomeSource {
endBiome = mapLand.getBiome(biomeX << 2, biomeZ << 2);
}
else {
if (!GeneratorOptions.noRingVoid() && dist <= 65536L) {
return barrens;
}
endBiome = mapVoid.getBiome(biomeX << 2, biomeZ << 2);
}
}