private static void StopFollow_Prefix()
 {
     if (FollowMe.CurrentlyFollowing)
     {
         FollowMe.StopFollow("Harmony");
     }
 }
 private static void StopFollow_Prefix_Vector3([NotNull] Vector3 loc)
 {
     if (FollowMe.CurrentlyFollowing)
     {
         if (FollowMe.FollowedThing.TrueCenter() != loc)
         {
             FollowMe.StopFollow("Harmony");
         }
     }
 }