parallel delta queue processing
thread safe packet construction, compilation, compression, gump compilation, sending, coalescing, and many other fixes TODO: delta queue recursion fixups, ipooledenumerable fixups/generics
This commit is contained in:
parent
9404651774
commit
ddcc4e7a20
16 changed files with 619 additions and 575 deletions
|
|
@ -176,7 +176,8 @@ namespace Server.Regions
|
|||
{
|
||||
BaseGuard useGuard = null;
|
||||
|
||||
foreach ( Mobile m in focus.GetMobilesInRange( 8 ) )
|
||||
IPooledEnumerable eable = focus.GetMobilesInRange( 8 );
|
||||
foreach ( Mobile m in eable)
|
||||
{
|
||||
if ( m is BaseGuard )
|
||||
{
|
||||
|
|
@ -190,6 +191,8 @@ namespace Server.Regions
|
|||
}
|
||||
}
|
||||
|
||||
eable.Free();
|
||||
|
||||
if ( useGuard == null )
|
||||
{
|
||||
m_GuardParams[0] = focus;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue