Exemple #1
0
 /// <summary>
 ///     Calls <see cref="IBot.Settings()" /> for the currently ActiveBot
 /// </summary>
 public static void Settings()
 {
     try
     {
         if (ActiveBot != null)
         {
             ActiveBot.Settings();
         }
     }
     catch (Exception ex)
     {
         Logger.Error("Exception thrown while trying to modify bot settings", ex);
     }
 }