@Deprecated
public DesireFollowTamer(RemoteEntity inEntity, float inMinDistance, float inMaxDistance)
{
super(inEntity);
if(!(this.getEntityHandle() instanceof EntityTameableAnimal) && !this.getRemoteEntity().getFeatures().hasFeature(TamingFeature.class))
throw new NotTameableException();
this.m_animal = this.getEntityHandle();
this.m_type = DesireType.FULL_CONCENTRATION;
this.m_minDistance = inMinDistance;
this.m_minDistanceSquared = this.m_minDistance * this.m_minDistance;