Package erogenousbeef.bigreactors.common.data

Examples of erogenousbeef.bigreactors.common.data.ReactantStack.writeToNBT()


  protected NBTTagCompound writeToNBT(NBTTagCompound destination) {
    ReactantStack stack;
    for(int i = 0; i < tankNames.length; i++) {
      stack = tanks[i];
      if(stack != null) {
        destination.setTag(tankNames[i], stack.writeToNBT(new NBTTagCompound()));
      }
    }
   
    return destination;
  }
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.