/**
* This class was created by <Vazkii>. It's distributed as
* part of the Botania Mod. Get the Source Code in github:
* https://github.com/Vazkii/Botania
*
* Botania is Open Source and distributed under the
* Botania License: http://botaniamod.net/license.php
*
* File Created @ [May 10, 2014, 5:50:01 PM (GMT)]
*/
package vazkii.botania.common.block.tile;
import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.util.math.AxisAlignedBB;
public class TileForestEye extends TileMod {
public int entities = 0;
@Override
public void update() {
if (world.isRemote)
return;
int range = 6;
int entityCount = world.getEntitiesWithinAABB(EntityAnimal.class, new AxisAlignedBB(pos.add(-range, -range, -range), pos.add(range + 1, range + 1, range + 1))).size();
if(entityCount != entities) {
entities = entityCount;
world.updateComparatorOutputLevel(pos, world.getBlockState(pos).getBlock());
}
}
}