Item.ProcessDelta update to efficiently send property list hashes
Overriding SendInfoTo(NetState) is now obsolete; instead, override SendInfoTo(NetState, bool) or GetWorldPacketFor(NetState)
This commit is contained in:
parent
51eb9e2676
commit
93f6301be8
4 changed files with 14 additions and 20 deletions
|
|
@ -620,9 +620,9 @@ namespace Server.Multis
|
|||
DesignState.SendDetailedInfoTo( m.NetState );
|
||||
}
|
||||
|
||||
public override void SendInfoTo( NetState state )
|
||||
public override void SendInfoTo( NetState state, bool sendOplPacket )
|
||||
{
|
||||
base.SendInfoTo( state );
|
||||
base.SendInfoTo( state, sendOplPacket );
|
||||
|
||||
DesignContext context = DesignContext.Find( state.Mobile );
|
||||
DesignState stateToSend;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue