From c2ac6ac54ae91ef411f93d0b157723e3ddf34974 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Sat, 24 Aug 2024 08:15:14 +0300 Subject: [PATCH] fix --- src/world/generator/WorldGenerator.cpp | 2 +- src/world/generator/WorldGenerator.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {