Examples of TileBaseUniversalElectrical


Examples of micdoodle8.mods.galacticraft.core.energy.tile.TileBaseUniversalElectrical

            {
                TileEntity tileAdj = this.getAttachedTile();

                if (tileAdj instanceof TileBaseUniversalElectrical)
                {
                    TileBaseUniversalElectrical electricalTile = (TileBaseUniversalElectrical) tileAdj;
                    EnergySourceAdjacent source = new EnergySourceAdjacent(ForgeDirection.getOrientation(this.facing ^ 1));
                    this.storage.extractEnergyGC(electricalTile.receiveEnergyGC(source, this.storage.getEnergyStoredGC(), false), false);
                }
                else
                {
                    ForgeDirection inputAdj = ForgeDirection.getOrientation(this.facing);
                  float otherModTransfer = EnergyUtil.otherModsEnergyTransfer(tileAdj, inputAdj, this.storage.getEnergyStoredGC(), false);
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.