Server.AosSkillBonuses.Remove C# (CSharp) Méthode

Remove() public méthode

public Remove ( ) : void
Résultat void
        public void Remove()
        {
            if( m_Mods == null )
                return;

            for( int i = 0; i < m_Mods.Count; ++i ) {

                Mobile m = m_Mods[i].Owner;
                m_Mods[i].Remove();

                if ( Core.ML )
                    CheckCancelMorph ( m );
            }
            m_Mods = null;
        }