use 0 instead of sv_highchars when setting the *cheats serverinfo,

since sv_highchars isn't initialized at that point.
This commit is contained in:
Adam Olsen 2001-08-13 09:14:15 +00:00
parent a290afd2b5
commit f9f1e053a4

View file

@ -945,7 +945,7 @@ SV_InitOperatorCommands (void)
if (COM_CheckParm ("-cheats")) {
sv_allow_cheats = true;
Info_SetValueForStarKey (svs.info, "*cheats", "ON",
MAX_SERVERINFO_STRING, !sv_highchars->int_val);
MAX_SERVERINFO_STRING, 0);
}
Cmd_AddCommand ("logfile", SV_Logfile_f, "Toggles logging of console text to qconsole.log");