Server.Engines.PartySystem.Party.EventSink_Logout C# (CSharp) Method

EventSink_Logout() public static method

public static EventSink_Logout ( LogoutEventArgs e ) : void
e Server.LogoutEventArgs
return void
		public static void EventSink_Logout( LogoutEventArgs e )
		{
			Mobile from = e.Mobile;
			Party p = Party.Get( from );

			if ( p != null )
				p.Remove( from );

			from.Party = null;
		}