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
|
|
@ -5429,7 +5429,8 @@ namespace Server.Mobiles
|
|||
{
|
||||
Corpse toRummage = null;
|
||||
|
||||
foreach ( Item item in this.GetItemsInRange( 2 ) )
|
||||
IPooledEnumerable eable = this.GetItemsInRange(2);
|
||||
foreach ( Item item in eable )
|
||||
{
|
||||
if ( item is Corpse && item.Items.Count > 0 )
|
||||
{
|
||||
|
|
@ -5437,6 +5438,7 @@ namespace Server.Mobiles
|
|||
break;
|
||||
}
|
||||
}
|
||||
eable.Free();
|
||||
|
||||
if ( toRummage == null )
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue