public boolean hasInfinity() {
   return tile.getEnchantment(Enchantment.infinity) > 0;
 }
 public boolean isTileEqual(TileEntityMobHarvester te) {
   return te != null && te.equals(tile);
 }
 public int getLootingLevel() {
   return tile.getEnchantment(Enchantment.looting);
 }
 public HarvesterDamage(TileEntityMobHarvester te) {
   super("player", te.getPlacer());
   tile = te;
 }