Package thaumcraft.api.research

Examples of thaumcraft.api.research.ResearchPage


    }
    for (ResearchCategoryList rcl:ResearchCategories.researchCategories.values()) {
      for (ResearchItem ri:rcl.research.values()) {
        if (ri.getPages()==null) continue;
        for (int a=0;a<ri.getPages().length;a++) {
          ResearchPage page = ri.getPages()[a];
          if (page.recipeOutput!=null && stack !=null && page.recipeOutput.isItemEqual(stack)) {
            keyCache.put(key,new Object[] {ri.key,a});
            if (ThaumcraftApiHelper.isResearchComplete(player.getCommandSenderName(), ri.key))
              return new Object[] {ri.key,a};
            else
View Full Code Here

TOP

Related Classes of thaumcraft.api.research.ResearchPage

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.