mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Warden: Max packet size 500 -> 450
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user