From e6272cd7d356bbb047dcaebb03ae217235e1e13f Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sun, 24 Aug 2008 21:36:39 +0000 Subject: afterburner/reverse/strafe --- src/core/application.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/application.cc') diff --git a/src/core/application.cc b/src/core/application.cc index 49c61d7..21d5e50 100644 --- a/src/core/application.cc +++ b/src/core/application.cc @@ -348,11 +348,13 @@ void Application::save_config() ofs << "# server.cfg - osiriond dedicated server configuration" << std::endl; ofs << "# this file is automaticly generated" << std::endl; + ofs << std::endl; for (Cvar::Registry::iterator it = Cvar::registry().begin(); it != Cvar::registry().end(); it++) { if (((*it).second->flags() & Cvar::Archive) == Cvar::Archive) { ofs << "# " << (*it).first << " " << (*it).second->info() << std::endl; ofs << "set " << (*it).first << " " << (*it).second->str() << std::endl; + ofs << std::endl; } } ofs.close(); -- cgit v1.2.3