mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-02-16 10:30:42 +00:00
remove println
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user