remove println

This commit is contained in:
dfsek
2022-05-25 17:51:32 -07:00
parent 304ae3075b
commit 69a5cfecd1

View File

@@ -43,9 +43,6 @@ public class TerraBiomeSource extends BiomeSource {
.getBiomes()
.spliterator(), false)
.map(b -> ((ProtoPlatformBiome) b.getPlatformBiome()).getDelegate()));
biomes.streamEntries().forEach(biomeReference -> {
System.out.println(biomeReference.getKey().orElseThrow());
});
/*
A little (unfortunately, required) jank to watch out for:
@@ -73,17 +70,6 @@ public class TerraBiomeSource extends BiomeSource {
@Override
public RegistryEntry<net.minecraft.world.biome.Biome> getBiome(int biomeX, int biomeY, int biomeZ, MultiNoiseSampler noiseSampler) {
/*return biomeRegistry
.getEntry(((ProtoPlatformBiome) pack
.getBiomeProvider()
.getBiome(biomeX << 2, biomeZ << 2, seed)
.getPlatformBiome())
.getDelegate()
.getKey()
.orElseThrow())
.orElseThrow();
*/
return biomeRegistry.entryOf(((ProtoPlatformBiome) pack
.getBiomeProvider()
.getBiome(biomeX << 2, biomeZ << 2, seed)