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

EventSink_Login() public static method

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

			if ( p != null )
				new RejoinTimer( from ).Start();
			else
				from.Party = null;
		}