diff --git a/src/world/generator/WorldGenerator.cpp b/src/world/generator/WorldGenerator.cpp index 1347a10f..5fef618b 100644 --- a/src/world/generator/WorldGenerator.cpp +++ b/src/world/generator/WorldGenerator.cpp @@ -90,7 +90,7 @@ std::unique_ptr WorldGenerator::generatePrototype( } } return std::make_unique( - ChunkPrototypeLevel::HEIGHTMAP, + ChunkPrototypeLevel::BIOMES, nullptr, std::move(chunkBiomes)); } diff --git a/src/world/generator/WorldGenerator.hpp b/src/world/generator/WorldGenerator.hpp index 84c1022a..804cd4e9 100644 --- a/src/world/generator/WorldGenerator.hpp +++ b/src/world/generator/WorldGenerator.hpp @@ -14,7 +14,7 @@ class Heightmap; struct Biome; enum class ChunkPrototypeLevel { - BIOME, HEIGHTMAP + BIOMES, HEIGHTMAP }; struct ChunkPrototype {