Package logisticspipes.utils

Examples of logisticspipes.utils.FinalNBTTagCompound


      nextUniqueID = tagIDsets.get(item).nextClearBit(1);
      tagIDsets.get(item).set(nextUniqueID);
    } else {
      nextUniqueID = r.uniqueID;
    }
    FinalNBTTagCompound finaltag = new FinalNBTTagCompound((NBTTagCompound)tag.copy());
    ItemKey realKey = new ItemKey(item, damage, finaltag);
    ItemIdentifier ret = new ItemIdentifier(item, damage, finaltag, nextUniqueID);
    keyRefMap.put(realKey, new IDReference(realKey, nextUniqueID, ret));
    keyRefWlock.unlock();
    return ret;
View Full Code Here


    } else if(tag == null) {
      //no tag, damage
      return getOrCreateDamage(item, itemUndamagableDamage);
    } else {
      //tag
      return getOrCreateTag(item, itemUndamagableDamage, new FinalNBTTagCompound(tag));
    }
  }
View Full Code Here

TOP

Related Classes of logisticspipes.utils.FinalNBTTagCompound

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.