bigfoot pointed out this problem without NQPROT on a server
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@858 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
a1a586aab9
commit
b1c2a6494a
1 changed files with 4 additions and 1 deletions
|
@ -1095,7 +1095,9 @@ void SVC_DirectConnect
|
|||
numssclients = 1;
|
||||
if (atoi(Cmd_Argv(0)+7))
|
||||
{
|
||||
#ifdef NQPROT
|
||||
if (!socket)
|
||||
#endif
|
||||
numssclients = atoi(Cmd_Argv(0)+7);
|
||||
if (numssclients<1)
|
||||
{
|
||||
|
@ -1259,8 +1261,9 @@ void SVC_DirectConnect
|
|||
nextuserid--;
|
||||
return;
|
||||
}
|
||||
|
||||
#ifdef NQPROT
|
||||
if (!socket)
|
||||
#endif
|
||||
{
|
||||
Con_Printf ("%s:reconnect\n", NET_AdrToString (adr));
|
||||
// SV_DropClient (cl);
|
||||
|
|
Loading…
Reference in a new issue