Package appeng.items.materials

Examples of appeng.items.materials.MaterialType


      }

      if ( itemName.startsWith( "ItemMaterial." ) )
      {
        String materialName = itemName.substring( itemName.indexOf( "." ) + 1 );
        MaterialType mt = MaterialType.valueOf( materialName );
        // itemName = itemName.substring( 0, itemName.indexOf( "." ) );
        if ( mt.itemInstance == ItemMultiMaterial.instance && mt.damageValue >= 0 && mt.isRegistered() )
          return new ResolverResult( "ItemMultiMaterial", mt.damageValue );
      }

      if ( itemName.startsWith( "ItemPart." ) )
      {
View Full Code Here

TOP

Related Classes of appeng.items.materials.MaterialType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.