Examples of downloadSettings()


Examples of appeng.tile.AEBaseTile.downloadSettings()

            ItemStack op = new ItemStack( this );
            for (ItemStack ol : drops)
            {
              if ( Platform.isSameItemType( ol, op ) )
              {
                NBTTagCompound tag = tile.downloadSettings( SettingsFrom.DISMANTLE_ITEM );
                if ( tag != null )
                  ol.setTagCompound( tag );
              }
            }
View Full Code Here

Examples of appeng.tile.AEBaseTile.downloadSettings()

          {
            AEBaseTile t = getTileEntity( w, x, y, z );
            if ( t != null )
            {
              String name = getUnlocalizedName();
              NBTTagCompound data = t.downloadSettings( SettingsFrom.MEMORY_CARD );
              if ( data != null )
              {
                memoryCard.setMemoryCardContents( is, name, data );
                memoryCard.notifyUser( player, MemoryCardMessages.SETTINGS_SAVED );
                return true;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.