replace structures.json with structures.toml

This commit is contained in:
MihailRis
2024-10-15 03:22:19 +03:00
parent 5ff42929f9
commit f87bb960a9
3 changed files with 7 additions and 9 deletions
+2 -2
View File
@@ -133,7 +133,7 @@ static std::vector<std::unique_ptr<VoxelStructure>> load_structures(
const fs::path& structuresFile
) {
auto structuresDir = structuresFile.parent_path() / fs::path("fragments");
auto map = files::read_json(structuresFile);
auto map = files::read_object(structuresFile);
std::vector<std::unique_ptr<VoxelStructure>> structures;
for (auto& [name, config] : map.asObject()) {
@@ -171,7 +171,7 @@ static void load_structures(GeneratorDef& def, const fs::path& structuresFile) {
}
}
static inline const auto STRUCTURES_FILE = fs::u8path("structures.json");
static inline const auto STRUCTURES_FILE = fs::u8path("structures.toml");
static inline const auto BIOMES_FILE = fs::u8path("biomes.toml");
static inline const auto GENERATORS_DIR = fs::u8path("generators");