Examples of TileEntityCoalGenerator


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

    {
        TileEntity tile = par1World.getTileEntity(x, y, z);

        if (tile instanceof TileEntityCoalGenerator)
        {
            TileEntityCoalGenerator tileEntity = (TileEntityCoalGenerator) tile;
            if (tileEntity.heatGJperTick > 0)
            {
                int metadata = par1World.getBlockMetadata(x, y, z);
                float var7 = x + 0.5F;
                float var8 = y + 0.0F + par5Random.nextFloat() * 6.0F / 16.0F;
View Full Code Here

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

    {
        TileEntity tile = par1World.getTileEntity(x, y, z);

        if (tile instanceof TileEntityCoalGenerator)
        {
            TileEntityCoalGenerator tileEntity = (TileEntityCoalGenerator) tile;
            if (tileEntity.heatGJperTick > 0)
            {
                int metadata = par1World.getBlockMetadata(x, y, z);
                float var7 = x + 0.5F;
                float var8 = y + 0.0F + par5Random.nextFloat() * 6.0F / 16.0F;
View Full Code Here

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

        {
            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.