bool ChasePlayer()
 {
     if (AI_CONTROL.GetLastPlayerWayPoint() != null)
     {
         if (AI_CONTROL.PlayerIsClose(20f))
         {
             if (!AI_CONTROL.PlayerIsDead())
             {
                 return(true);
             }
         }
     }
     return(false);
 }