Server.Mobiles.EtherealMount.Dismount C# (CSharp) Method

Dismount() public static method

public static Dismount ( Mobile m ) : void
m Mobile
return void
		public static void Dismount( Mobile m )
		{
			IMount mount = m.Mount;

			if( mount != null )
				mount.Rider = null;
		}