Corrected if-statement and added explicit brackets

This commit is contained in:
Maddes Buecher 2000-08-17 19:38:40 +00:00
parent 55406f5c5d
commit 88a9d8d68a
2 changed files with 4 additions and 3 deletions

View file

@ -722,7 +722,7 @@ Host_WriteConfiguration ( void )
QFile *f;
// Only write cvars if we are non-dedicated
if (host_initialized & !isDedicated) {
if (host_initialized && !isDedicated) {
f = Qopen (va("%s/config.cfg",com_gamedir), "w");
if ( !f ) {
Con_Printf ("Couldn't write config.cfg.\n");

View file

@ -1459,13 +1459,14 @@ void Host_Kick_f (void)
if (i < svs.maxclients)
{
if (cmd_source == src_command)
if (cmd_source == src_command) {
if (cls.state == ca_dedicated)
who = "Console";
else
who = cl_name->string;
else
} else {
who = save->name;
}
// can't kick yourself!
if (host_client == save)