Examples of GridTileConnectivityEvent


Examples of appeng.api.events.GridTileConnectivityEvent

    worldObj.setBlockMetadataWithNotify(x, y, z, rotateDirecions(rotation).ordinal(), 3);
    TileEntity te = worldObj.getBlockTileEntity(x, y, z);
    if (te instanceof IGridTileEntity)
    {
      MinecraftForge.EVENT_BUS.post(new GridTileConnectivityEvent((IGridTileEntity) te, worldObj, new WorldCoord(x, y, z)));
    }
    return true;
  }
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.