diff options
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp index 6c58515..f4be288 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -191,7 +191,8 @@ void WorldSystem::load(const std::string& file) return; // save the current world's data - save(); + if (!currentXMLFile.empty()) + save(); // load file data to string auto xmlPath = xmlFolder + file; |