Server.SkillHandlers.Discordance.OnUse C# (CSharp) Method

OnUse() public static method

public static OnUse ( Mobile m ) : System.TimeSpan
m Mobile
return System.TimeSpan
		public static TimeSpan OnUse( Mobile m )
		{
			m.RevealingAction();

			BaseInstrument.PickInstrument( m, new InstrumentPickedCallback( OnPickedInstrument ) );

			return TimeSpan.FromSeconds( 1.0 ); // Cannot use another skill for 1 second
		}