From 171fff3843cce672011dcc42bb5331a84ec53ae0 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 08:02:38 -0700 Subject: [PATCH] chore(editor): include editor version in zone manifest export --- tools/editor/zone_manifest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/editor/zone_manifest.cpp b/tools/editor/zone_manifest.cpp index f1e7a873..72b84f86 100644 --- a/tools/editor/zone_manifest.cpp +++ b/tools/editor/zone_manifest.cpp @@ -21,6 +21,7 @@ bool ZoneManifest::save(const std::string& path) const { f << " \"baseHeight\": " << baseHeight << ",\n"; f << " \"hasCreatures\": " << (hasCreatures ? "true" : "false") << ",\n"; f << " \"description\": \"" << description << "\",\n"; + f << " \"editorVersion\": \"0.2.0\",\n"; f << " \"tiles\": ["; for (size_t i = 0; i < tiles.size(); i++) { f << "[" << tiles[i].first << "," << tiles[i].second << "]";