void MPCheck()
 {
     foreach (Mod mod in VTOLAPI.GetUsersMods())
     {
         if (mod.name == "Multiplayer")
         {
             Debug.Log("Airtraffic has detected MP, enbling MP mode");
             mpMode = true;
             HostCheck();
             break;
         }
     }
     Debug.Log("The MP mod is not installed.");
 }