Package buildcraft.core.builders

Examples of buildcraft.core.builders.BuildingItem.readFromNBT()


    for (int i = 0; i < buildingList.tagCount(); ++i) {
      BuildingItem item = new BuildingItem();

      try {
        item.readFromNBT(buildingList.getCompoundTagAt(i));
        item.context = getContext();
        builder.getBuilders().add(item);
      } catch (MappingNotFoundException e) {
        BCLog.logger.log(Level.WARN, "can't load building item", e);
      }
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.