Package codechicken.nei.recipe.FurnaceRecipeHandler

Examples of codechicken.nei.recipe.FurnaceRecipeHandler.FuelPair


            if (!IngotCompressorRecipeHandler.efuels.contains(Item.getIdFromItem(item.getItem())))
            {
                int burnTime = TileEntityFurnace.getItemBurnTime(item);
                if (burnTime > 0)
                {
                    FuelPair fuelPair = new FuelPair(item.copy(), burnTime);
                    fuelPair.stack.relx = 57;
                    fuelPair.stack.rely = 83;
                    IngotCompressorRecipeHandler.afuels.add(fuelPair);
                }
            }
View Full Code Here

TOP

Related Classes of codechicken.nei.recipe.FurnaceRecipeHandler.FuelPair

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.