Change: unify the style of console error messages and convert to fmt

Always start with a capital, do not add "ERROR: " in front of it.
This commit is contained in:
rubidium42
2021-06-12 21:07:04 +02:00
committed by rubidium42
parent de49727ae8
commit efd4ba4797
4 changed files with 66 additions and 70 deletions

View File

@@ -1950,9 +1950,9 @@ void IConsoleSetSetting(const char *name, const char *value, bool force_newgame)
if (!success) {
if (_network_server) {
IConsoleError("This command/variable is not available during network games.");
IConsolePrint(CC_ERROR, "This command/variable is not available during network games.");
} else {
IConsoleError("This command/variable is only available to a network server.");
IConsolePrint(CC_ERROR, "This command/variable is only available to a network server.");
}
}
}