Fixes more casting and other formatting issues.
This commit is contained in:
parent
03dd5f1926
commit
61937d9c97
67 changed files with 325 additions and 570 deletions
|
|
@ -12,9 +12,8 @@ namespace Server.Engines.PartySystem
|
|||
|
||||
protected override void OnTarget( Mobile from, object o )
|
||||
{
|
||||
if ( o is Mobile )
|
||||
if ( o is Mobile m )
|
||||
{
|
||||
Mobile m = (Mobile)o;
|
||||
Party p = Party.Get( from );
|
||||
|
||||
if ( p == null || p.Leader != from || !p.Contains( m ) )
|
||||
|
|
@ -27,4 +26,4 @@ namespace Server.Engines.PartySystem
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue