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 << "]";