Server.Items.Runebook.GetProperties C# (CSharp) Méthode

GetProperties() public méthode

public GetProperties ( ObjectPropertyList list ) : void
list ObjectPropertyList
Résultat void
        public override void GetProperties( ObjectPropertyList list )
        {
            base.GetProperties( list );

            if ( m_Quality == BookQuality.Exceptional )
                list.Add( 1063341 ); // exceptional

            if ( m_Crafter != null )
                list.Add( 1050043, m_Crafter.Name ); // crafted by ~1_NAME~

            if ( m_Description != null && m_Description.Length > 0 )
                list.Add( m_Description );
        }