Ejemplo n.º 1
0
        public override void OnDoubleClick(Mobile from)
        {
            if (Parent == from)
            {
                if (m_Timer == null)
                {
                    m_Timer = new RuneBowChargeTimer(this);
                    m_Timer.Start();
                }

                OpenGump();
            }
            else
            {
                base.OnDoubleClick(from);
            }
        }
Ejemplo n.º 2
0
		public override void OnDoubleClick( Mobile from )
		{
			if ( Parent == from )
			{
				if ( m_Timer == null )
				{
					m_Timer = new RuneBowChargeTimer( this );
					m_Timer.Start();
				}

				OpenGump();
			}
			else
				base.OnDoubleClick( from );
		}