Examples of TileForestEye


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

    return true;
  }

  @Override
  public int getComparatorInputOverride(World par1World, int par2, int par3, int par4, int par5) {
    TileForestEye eye = (TileForestEye) par1World.getTileEntity(par2, par3, par4);
    return Math.min(15, Math.max(0, eye.entities - 1));
  }
View Full Code Here

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

    return Math.min(15, Math.max(0, eye.entities - 1));
  }

  @Override
  public TileEntity createNewTileEntity(World world, int meta) {
    return new TileForestEye();
  }
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.