From 2e0df5c82b4104d1215fb9714cfa962a75769c76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Domeradzki?= Date: Sun, 9 Nov 2025 22:53:47 +0100 Subject: [PATCH] Change the bot when distributing, not keeping missing games and having invalid key --- ArchiSteamFarm/Steam/Interaction/Commands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Steam/Interaction/Commands.cs b/ArchiSteamFarm/Steam/Interaction/Commands.cs index d44ae7489..0eb1f52d4 100644 --- a/ArchiSteamFarm/Steam/Interaction/Commands.cs +++ b/ArchiSteamFarm/Steam/Interaction/Commands.cs @@ -2711,7 +2711,7 @@ public sealed class Commands { // Next key key = keysEnumerator.MoveNext() ? keysEnumerator.Current : null; - if (purchaseResultDetail == EPurchaseResultDetail.NoDetail) { + if (purchaseResultDetail == EPurchaseResultDetail.NoDetail || (distribute && !keepMissingGames)) { // Next bot (if needed) break; }