refactor: Remove worldSizeChunks param from BiomeSource::findSeed

This commit is contained in:
George V.
2026-04-13 23:02:05 +03:00
parent 2ddf72a4eb
commit 00af47178d
2 changed files with 14 additions and 12 deletions
+3 -1
View File
@@ -742,7 +742,9 @@ bool MinecraftServer::initServer(int64_t seed, NetworkGameInitData *initData, DW
#ifdef __PSVITA__
seed = BiomeSource::findSeed(pLevelType, &running, worldSizeChunks);
#else
seed = BiomeSource::findSeed(pLevelType, worldSizeChunks);
// LordCambion changes removed the worldSizeChunks param from BiomeSource#findSeed
// seed = BiomeSource::findSeed(pLevelType, worldSizeChunks);
seed = BiomeSource::findSeed(pLevelType);
#endif
}