MRMJ-1: Messenger & Skills fixes

This commit is contained in:
Mind Rapist
2025-12-14 05:12:39 +02:00
parent 436db01a80
commit 7b08687023
46 changed files with 1258 additions and 60 deletions

View File

@@ -662,10 +662,14 @@ bool CPythonNetworkStream::RecvPingPacket()
if (!Send(sizeof(TPacketCGPong), &kPacketPong))
return false;
#ifdef FIX_SEQ_254
return SendSequence();
#else
if (IsSecurityMode())
return SendSequence();
else
return true;
#endif
}
bool CPythonNetworkStream::RecvDefaultPacket(int header)