@Override
public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) {
if(worldIn.isRemote) {
return true;
}
TileEntityCrank tile = (TileEntityCrank) worldIn.getTileEntity(pos);
if(tile.generationTimerDefault <= 100) {
tile.generationTimerDefault += 5;
tile.generationTimer += 5;
PacketHandler.INSTANCE.sendToAllAround(new MessageCrank(tile), new NetworkRegistry.TargetPoint(worldIn.provider.getDimension(), (double) pos.getX(), (double) pos.getY(), (double) pos.getZ(), 128d));
}
return true;
}
BlockCrank.java 文件源码
java
阅读 15
收藏 0
点赞 0
评论 0
项目:Machines-and-Stuff
作者:
评论列表
文章目录