Example #1
0
  public boolean onBlockActivated(
      World worldIn,
      BlockPos pos,
      IBlockState state,
      EntityPlayer playerIn,
      EnumFacing side,
      float hitX,
      float hitY,
      float hitZ) {
    if (worldIn.isRemote) {
      return true;
    } else {
      TileEntity var9 = worldIn.getTileEntity(pos);

      if (var9 instanceof TileEntityNote) {
        TileEntityNote var10 = (TileEntityNote) var9;
        var10.changePitch();
        var10.func_175108_a(worldIn, pos);
      }

      return true;
    }
  }
Example #2
0
  /** Called upon block activation (right click on the block.) */
  public boolean onBlockActivated(
      World par1World,
      int par2,
      int par3,
      int par4,
      EntityPlayer par5EntityPlayer,
      int par6,
      float par7,
      float par8,
      float par9) {
    if (par1World.isRemote) {
      return true;
    } else {
      TileEntityNote tileentitynote =
          (TileEntityNote) par1World.getBlockTileEntity(par2, par3, par4);

      if (tileentitynote != null) {
        tileentitynote.changePitch();
        tileentitynote.triggerNote(par1World, par2, par3, par4);
      }

      return true;
    }
  }