Examples of invalidateReflector()


Examples of micdoodle8.mods.galacticraft.planets.asteroids.tile.TileEntityBeamReceiver.invalidateReflector()

            TileEntity thisTile = world.getTileEntity(x, y, z);
            if (thisTile instanceof TileEntityBeamReceiver)
            {
              TileEntityBeamReceiver thisReceiver = (TileEntityBeamReceiver) thisTile;
                thisReceiver.setFacing(ForgeDirection.getOrientation(meta));
                thisReceiver.invalidateReflector();
                thisReceiver.initiateReflector();
            }
        }

        super.onNeighborBlockChange(world, x, y, z, block);
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.