fix(editor): sync --version CLI output to v1.0.0

This commit is contained in:
Kelsi 2026-05-05 12:16:21 -07:00
parent f20e602d32
commit c75337ed2c

View file

@ -30,7 +30,7 @@ int main(int argc, char* argv[]) {
adtX = std::atoi(argv[++i]);
adtY = std::atoi(argv[++i]);
} else if (std::strcmp(argv[i], "--version") == 0 || std::strcmp(argv[i], "-v") == 0) {
LOG_INFO("Wowee World Editor v0.9.0");
LOG_INFO("Wowee World Editor v1.0.0");
LOG_INFO("Open formats: WOT/WHM/WOM/WOB/WCP (all novel, no Blizzard IP)");
LOG_INFO("By Kelsi Davis");
return 0;