From: havoc Date: Sat, 9 Oct 2004 01:56:14 +0000 (+0000) Subject: fixed reconnect command which was being ignored by the client (forgot that it doesn... X-Git-Tag: xonotic-v0.1.0preview~5504 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=d2fed87da5e82d94c8c422b7be8bb2bca5d5383d fixed reconnect command which was being ignored by the client (forgot that it doesn't know what came from the client console and what came from the server, so disabling it in the client console was a bad idea) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4615 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/host_cmd.c b/host_cmd.c index 202bae16..9a0cc2a0 100644 --- a/host_cmd.c +++ b/host_cmd.c @@ -398,11 +398,6 @@ void Host_Reconnect_f (void) Con_Print("reconnect : wait for signon messages again\n"); return; } - if (cmd_source == src_command) - { - Con_Print("reconnect not valid from console\n"); - return; - } if (!cls.signon) { Con_Print("reconnect: no signon, ignoring reconnect\n");