Server.Items.BaseBulletinBoard.OnDoubleClick C# (CSharp) Méthode

OnDoubleClick() public méthode

public OnDoubleClick ( Server.Mobile from ) : void
from Server.Mobile
Résultat void
		public override void OnDoubleClick( Mobile from )
		{
			if ( CheckRange( from ) )
			{
				Cleanup();

				NetState state = from.NetState;

				state.Send( new BBDisplayBoard( this ) );
				if ( state.ContainerGridLines )
					state.Send( new ContainerContent6017( from, this ) );
				else
					state.Send( new ContainerContent( from, this ) );
			}
			else
			{
				from.LocalOverheadMessage( MessageType.Regular, 0x3B2, 1019045 ); // I can't reach that.
			}
		}