1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-28 07:07:45 +00:00

Make max set size 15k so login feels slower so we are more retail accurate

This commit is contained in:
NotAdam 2018-11-25 23:29:37 +11:00
parent 1e9ad88aa6
commit c51ebb7054

View file

@ -323,7 +323,7 @@ void Core::Network::GameConnection::processOutQueue()
totalSize += pPacket->getSize(); totalSize += pPacket->getSize();
// todo: figure out a good max set size and make it configurable // todo: figure out a good max set size and make it configurable
if( totalSize > 5000 ) if( totalSize > 15000 )
break; break;
} }