From 16a096b25de2bbd90ac764882894a07d756328a8 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 08:37:51 -0700 Subject: [PATCH] fix(editor): include quest count in export README, version tag --- tools/editor/editor_app.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/editor/editor_app.cpp b/tools/editor/editor_app.cpp index c4a12e6a..64c8a7e6 100644 --- a/tools/editor/editor_app.cpp +++ b/tools/editor/editor_app.cpp @@ -704,7 +704,8 @@ void EditorApp::exportZone(const std::string& outputDir) { readme << "Tile: [" << loadedTileX_ << ", " << loadedTileY_ << "]\n"; readme << "Objects: " << objectPlacer_.objectCount() << "\n"; readme << "NPCs: " << npcSpawner_.spawnCount() << "\n"; - readme << "Created with Wowee World Editor\n\n"; + readme << "Quests: " << questEditor_.questCount() << "\n"; + readme << "Created with Wowee World Editor v0.3.0\n\n"; readme << "Files:\n"; readme << " zone.json - Zone manifest (for client)\n"; readme << " " << loadedMap_ << ".wdt - Map definition\n";