diff options
author | Mattes D <github@xoft.cz> | 2019-09-08 15:59:15 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2019-09-08 20:21:49 +0200 |
commit | ad24702b4e0569318c97391cd930c5956d190016 (patch) | |
tree | 48182f7af3185b8a5ef217ac408e0a3756ba8964 /src/Generating/ChunkGenerator.cpp | |
parent | ShapeGen, HeiGen: Changed to use cChunkCoords. (diff) | |
download | cuberite-ad24702b4e0569318c97391cd930c5956d190016.tar cuberite-ad24702b4e0569318c97391cd930c5956d190016.tar.gz cuberite-ad24702b4e0569318c97391cd930c5956d190016.tar.bz2 cuberite-ad24702b4e0569318c97391cd930c5956d190016.tar.lz cuberite-ad24702b4e0569318c97391cd930c5956d190016.tar.xz cuberite-ad24702b4e0569318c97391cd930c5956d190016.tar.zst cuberite-ad24702b4e0569318c97391cd930c5956d190016.zip |
Diffstat (limited to 'src/Generating/ChunkGenerator.cpp')
-rw-r--r-- | src/Generating/ChunkGenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generating/ChunkGenerator.cpp b/src/Generating/ChunkGenerator.cpp index 7687eea72..b8486e3d6 100644 --- a/src/Generating/ChunkGenerator.cpp +++ b/src/Generating/ChunkGenerator.cpp @@ -71,7 +71,7 @@ EMCSBiome cChunkGenerator::GetBiomeAt(int a_BlockX, int a_BlockZ) int Y = 0; int ChunkX, ChunkZ; cChunkDef::AbsoluteToRelative(a_BlockX, Y, a_BlockZ, ChunkX, ChunkZ); - GenerateBiomes(ChunkX, ChunkZ, Biomes); + GenerateBiomes({ChunkX, ChunkZ}, Biomes); return cChunkDef::GetBiome(Biomes, a_BlockX, a_BlockZ); } |