Package buildcraft.api.blueprints

Examples of buildcraft.api.blueprints.MappingRegistry.scanAndTranslateStacksToWorld()


    for (int i = 0; i < list.tagCount(); ++i) {
      NBTTagCompound cpt = list.getCompoundTagAt(i);

      try {
        registry.scanAndTranslateStacksToWorld(cpt);
        SequenceAction action = (SequenceAction) strToClass.get(cpt.getString("class")).newInstance();
        action.world = world;
        action.readFromNBT(cpt);

        action.date = (action.date - initialDate) + world.getTotalWorldTime();
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.