Package tconstruct.library.crafting

Examples of tconstruct.library.crafting.AlloyMix


    @Override
    public void loadUsageRecipes (FluidStack ingredient)
    {
        for (Iterator<AlloyMix> i = Smeltery.getAlloyList().iterator(); i.hasNext();)
        {
            AlloyMix recipe = i.next();
            for (FluidStack liquid : recipe.mixers)
            {
                if (areFluidsEqual(liquid, ingredient) && !recipe.mixers.isEmpty())
                {
                    this.arecipes.add(new CachedAlloyingRecipe(recipe));
View Full Code Here

TOP

Related Classes of tconstruct.library.crafting.AlloyMix

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.