2014-01-27 05:00:36 +01:00
|
|
|
package appeng.items.contents;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import appeng.parts.automation.UpgradeInventory;
|
|
|
|
import appeng.util.Platform;
|
|
|
|
|
|
|
|
public class CellUpgrades extends UpgradeInventory
|
|
|
|
{
|
|
|
|
|
|
|
|
final ItemStack is;
|
|
|
|
|
|
|
|
public CellUpgrades(ItemStack is, int upgrades) {
|
|
|
|
super( is.getItem(), null, upgrades );
|
|
|
|
this.is = is;
|
|
|
|
readFromNBT( Platform.openNbtData( is ), "upgrades" );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
public void markDirty()
|
2014-01-27 05:00:36 +01:00
|
|
|
{
|
|
|
|
writeToNBT( Platform.openNbtData( is ), "upgrades" );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|