diff --git a/ArchiSteamFarm/Program.cs b/ArchiSteamFarm/Program.cs index 36cb429ce..93847a114 100644 --- a/ArchiSteamFarm/Program.cs +++ b/ArchiSteamFarm/Program.cs @@ -497,7 +497,9 @@ namespace ArchiSteamFarm { Bot bot = new Bot(botName); if (bot.BotConfig != null && bot.BotConfig.Enabled) { - isRunning = true; + if (bot.BotConfig.StartOnLaunch) { + isRunning = true; + } } else { Logging.LogGenericInfo("Not starting this instance because it's disabled in config file", botName); }