Package buildcraft.api.events

Examples of buildcraft.api.events.PipePlacedEvent


      TileEntity tile = world.getTileEntity(i, j, k);
      if (tile instanceof TileGenericPipe) {
        TileGenericPipe tilePipe = (TileGenericPipe) tile;
        tilePipe.initialize(pipe);
        tilePipe.sendUpdateToClient();
        FMLCommonHandler.instance().bus().post(new PipePlacedEvent(player, pipe.item.getUnlocalizedName(), i, j, k));
      }
    }

    return placed;
  }
View Full Code Here

TOP

Related Classes of buildcraft.api.events.PipePlacedEvent

Copyright © 2018 www.massapicom. 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.