Package vazkii.botania.common.block.tile

Examples of vazkii.botania.common.block.tile.TilePlatform


    return meta == 2 ? -1F : super.getBlockHardness(par1World, par2, par3, par4);
  }

  @Override
  public TileCamo createNewTileEntity(World world, int meta) {
    return new TilePlatform();
  }
View Full Code Here


    return meta == 0 ? LexiconData.platform : meta == 2 ? null : LexiconData.spectralPlatform;
  }

  @Override
  public boolean onUsedByWand(EntityPlayer player, ItemStack stack, World world, int x, int y, int z, int side) {
    TilePlatform tile = (TilePlatform) world.getTileEntity(x, y, z);
    return tile.onWanded(player);
  }
View Full Code Here

TOP

Related Classes of vazkii.botania.common.block.tile.TilePlatform

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.