Server.Spells.Seventh.PolymorphSpell.StopTimer C# (CSharp) Method

StopTimer() public static method

public static StopTimer ( Mobile m ) : bool
m Mobile
return bool
		public static bool StopTimer( Mobile m )
		{
			Timer t = (Timer)m_Timers[m];

			if ( t != null )
			{
				t.Stop();
				m_Timers.Remove( m );
			}

			return ( t != null );
		}