mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2025-07-04 00:45:57 +00:00
fix BiomeProvider#getColumn
This commit is contained in:
parent
09e7d58eaf
commit
dc80fc1ffb
@ -64,7 +64,7 @@ public interface BiomeProvider {
|
|||||||
}
|
}
|
||||||
|
|
||||||
default Column<Biome> getColumn(int x, int z, WorldProperties properties) {
|
default Column<Biome> getColumn(int x, int z, WorldProperties properties) {
|
||||||
return new BiomeColumn(this, x, z, properties.getMinHeight(), properties.getMaxHeight(), properties.getSeed());
|
return new BiomeColumn(this, properties.getMinHeight(), properties.getMaxHeight(), x, z, properties.getSeed());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user