double oops!
This commit is contained in:
parent
9cb2a4ba46
commit
aa682987f5
1 changed files with 8 additions and 4 deletions
|
|
@ -3204,10 +3204,14 @@ namespace Server.Mobiles
|
|||
Type t = m.GetType();
|
||||
|
||||
if ( t == oldType || t == newType ) {
|
||||
if ( this.NetState.IsPost7000 ) {
|
||||
Send( new MobileMoving( m, Notoriety.Compute( this, m ) ) );
|
||||
} else {
|
||||
Send( new MobileMovingOld( m, Notoriety.Compute( this, m ) ) );
|
||||
NetState ns = this.NetState;
|
||||
|
||||
if ( ns != null ) {
|
||||
if ( ns.IsPost7000 ) {
|
||||
ns.Send( new MobileMoving( m, Notoriety.Compute( this, m ) ) );
|
||||
} else {
|
||||
ns.Send( new MobileMovingOld( m, Notoriety.Compute( this, m ) ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue