private void CheckIfWantsCrop()
 {
     // If the villager needs health, target a crop now if possible.
     if (!compHealth.IsHealthFull() && compVillagerStatus.foodController.GetViableCropCount() != 0)
     {
         compVillagerStatus.SetCropTargetToClosest();
     }
 }