mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-30 08:07:46 +00:00
Make max set size 15k so login feels slower so we are more retail accurate
This commit is contained in:
parent
14417f2cfa
commit
62833689ae
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue