Examples of TileEntityElectricFurnace


Examples of micdoodle8.mods.galacticraft.core.tile.TileEntityElectricFurnace

    {
        int tier = metadata / 8 + 1;

        if ((metadata & 4) == BlockMachineTiered.ELECTRIC_FURNACE_METADATA)
        {
            return new TileEntityElectricFurnace(tier);
        }
        else
        {
            return new TileEntityEnergyStorageModule(tier);
        }
View Full Code Here

Examples of micdoodle8.mods.galacticraft.core.tile.TileEntityElectricFurnace

        {
            return new TileEntityEnergyStorageModule();
        }
        else if (metadata == 8)
        {
            return new TileEntityElectricFurnace();
        }
        else
        {
            return new TileEntityCoalGenerator();
        }
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.