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:
parent
1e9ad88aa6
commit
c51ebb7054
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ void Core::Network::GameConnection::processOutQueue()
|
|||
totalSize += pPacket->getSize();
|
||||
|
||||
// todo: figure out a good max set size and make it configurable
|
||||
if( totalSize > 5000 )
|
||||
if( totalSize > 15000 )
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue