Ver Fonte

Re-throw exception on RMG failure to prevent weird crashes later

Ivan Savenko há 1 ano atrás
pai
commit
f5824ccea4
1 ficheiros alterados com 1 adições e 0 exclusões
  1. 1 0
      lib/rmg/CMapGenerator.cpp

+ 1 - 0
lib/rmg/CMapGenerator.cpp

@@ -130,6 +130,7 @@ std::unique_ptr<CMap> CMapGenerator::generate()
 	catch (rmgException &e)
 	{
 		logGlobal->error("Random map generation received exception: %s", e.what());
+		throw;
 	}
 	Load::Progress::finish();
 	return std::move(map->mapInstance);