Server.Mobiles.BaseCreature.Dispel C# (CSharp) Method

Dispel() public method

public Dispel ( Mobile m ) : void
m Mobile
return void
        public virtual void Dispel( Mobile m )
        {
            Effects.SendLocationParticles( EffectItem.Create( m.Location, m.Map, EffectItem.DefaultDuration ), 0x3728, 8, 20, 5042 );
            Effects.PlaySound( m, m.Map, 0x201 );

            m.Delete();
        }
BaseCreature