Biome generator fix

This commit is contained in:
paulevsGitch 2020-11-13 20:43:22 +03:00
parent 8bdfbb65fa
commit 24c501ce13
6 changed files with 5 additions and 20 deletions

View file

@ -85,8 +85,10 @@ public class BetterEndBiomeSource extends BiomeSource {
mapLand.clearCache();
mapVoid.clearCache();
}
System.out.println(endBiome.getID());
String space = endBiome.getID().getNamespace();
if (space.equals("byg")) {
System.out.println(biomeX * 4 + " 100 " + biomeZ * 4);
}
return biomeRegistry.get(endBiome.getID());//EndBiomes.getActualBiome(endBiome);
}

View file

@ -48,12 +48,6 @@ public class BiomePicker {
public List<EndBiome> getBiomes() {
return biomes;
}
public void debug() {
for (EndBiome b: biomes) {
System.out.println(b.debug());
}
}
public boolean containsImmutable(Identifier id) {
return immutableIDs.contains(id);