FIX: cat_save doesn't have newlines
This commit is contained in:
parent
7a9a1cc578
commit
a93f439ded
@ -193,7 +193,7 @@ CatCommand save_settings("save", "Save settings (optional filename)", [](const C
|
||||
for (auto i : g_ConVars) {
|
||||
if (i) {
|
||||
if (strcmp(i->GetString(), i->GetDefault())) {
|
||||
file << i->GetName() << " \"" << i->GetString() << "\"";
|
||||
file << i->GetName() << " \"" << i->GetString() << "\"\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user