From fdb194fe675a421c370e089405a6767829ce7c19 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Wed, 27 Apr 2016 20:28:36 +0200 Subject: [PATCH] Misc --- ArchiSteamFarm/Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); }