Core/Warden: Max packet size 500 -> 450

This commit is contained in:
Treeston
2021-01-04 23:52:50 +01:00
parent eaa22b8a17
commit de33d50c19

View File

@@ -251,7 +251,7 @@ void WardenWin::RequestChecks()
[&expectedSize](uint16 id)
{
uint8 const thisSize = GetCheckPacketSize(sWardenCheckMgr->GetCheckData(id));
if ((expectedSize + thisSize) > 500) // warden packets are truncated to 512 bytes clientside
if ((expectedSize + thisSize) > 450) // warden packets are truncated to 512 bytes clientside
return true;
expectedSize += thisSize;
return false;