diff --git a/ArchiSteamFarm/Steam/Bot.cs b/ArchiSteamFarm/Steam/Bot.cs index 1fc7b0094..41ddf3ec3 100644 --- a/ArchiSteamFarm/Steam/Bot.cs +++ b/ArchiSteamFarm/Steam/Bot.cs @@ -1406,7 +1406,9 @@ public sealed class Bot : IAsyncDisposable { return; } - Stop(botConfig.Enabled); + // Skip shutdown event as we're actually reinitializing the bot, not fully stopping it + Stop(true); + BotConfig = botConfig; await InitModules().ConfigureAwait(false);