mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2026-08-27 12:41:32 +00:00
Add t to TCP packets (#266)
By creating this pull request, I understand that code that is AI generated or otherwise automatically generated may be rejected without further discussion. I declare that I fully understand all code I pushed into this PR, and wrote all this code myself and own the rights to this code.
This commit is contained in:
@@ -77,7 +77,7 @@ void ServerSend(std::string Data, bool Rel) {
|
|||||||
C = Data.at(0);
|
C = Data.at(0);
|
||||||
if (C == 'O' || C == 'T')
|
if (C == 'O' || C == 'T')
|
||||||
Ack = true;
|
Ack = true;
|
||||||
if (C == 'N' || C == 'W' || C == 'Y' || C == 'V' || C == 'E' || C == 'C')
|
if (C == 'N' || C == 'W' || C == 'Y' || C == 'V' || C == 'E' || C == 'C' || C == 't')
|
||||||
Rel = true;
|
Rel = true;
|
||||||
if (compressBound(Data.size()) > 1024)
|
if (compressBound(Data.size()) > 1024)
|
||||||
Rel = true;
|
Rel = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user