mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-17 14:21:08 +00:00
pass seed to noise functions
This commit is contained in:
+1
-1
@@ -53,7 +53,7 @@ public class TerraBiomeSource extends BiomeSource {
|
||||
|
||||
@Override
|
||||
public Biome getBiomeForNoiseGen(int biomeX, int biomeY, int biomeZ) {
|
||||
TerraBiome biome = grid.getBiome(biomeX << 2, biomeZ << 2);
|
||||
TerraBiome biome = grid.getBiome(biomeX << 2, biomeZ << 2, seed);
|
||||
return biomeRegistry.get(new Identifier("terra", FabricUtil.createBiomeID(pack, biome.getID())));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user