From d38d8ffce3a2a83a051ef1078de9384a55207403 Mon Sep 17 00:00:00 2001 From: Tixx <83774803+WiserTixx@users.noreply.github.com> Date: Sun, 2 Aug 2026 21:36:54 +0200 Subject: [PATCH] Add t to TCP packets --- src/Network/GlobalHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/GlobalHandler.cpp b/src/Network/GlobalHandler.cpp index c2290df..05c6a54 100644 --- a/src/Network/GlobalHandler.cpp +++ b/src/Network/GlobalHandler.cpp @@ -73,7 +73,7 @@ void ServerSend(std::string Data, bool Rel) { C = Data.at(0); if (C == 'O' || C == 'T') 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; if (compressBound(Data.size()) > 1024) Rel = true;