mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-04 04:36:21 +00:00
Unclose a node if it sends PT_CLIENTJOIN..? fuck it, why not
This commit is contained in:
parent
7f0249a1ce
commit
a6fff36298
1 changed files with 5 additions and 0 deletions
|
|
@ -1374,6 +1374,8 @@ static boolean CL_SendJoin(void)
|
|||
netbuffer->u.clientcfg.challengenum = cl_challengenum;
|
||||
memcpy(netbuffer->u.clientcfg.challengeanswer, cl_challengeanswer, MD5_LEN);
|
||||
|
||||
nodes[servernode].flags &= ~NF_CLOSE; // Hell if I know.
|
||||
|
||||
return HSendPacket(servernode, true, 0, sizeof (clientconfig_pak));
|
||||
}
|
||||
|
||||
|
|
@ -3830,6 +3832,9 @@ static void HandleConnect(SINT8 node)
|
|||
}
|
||||
}
|
||||
|
||||
// The connecting node may be
|
||||
nodes[node].flags &= ~NF_CLOSE;
|
||||
|
||||
if (netbuffer->u.clientcfg.needsdownload)
|
||||
{
|
||||
netbuffer->packettype = PT_DOWNLOADFILESOKAY;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue