Skip to content

Commit

Permalink
Misc
Browse files Browse the repository at this point in the history
Paused could be flipped in the meantime between starting the background check and finishing it, we can check it again after having games to farm.
  • Loading branch information
JustArchi committed Jun 7, 2024
1 parent 3ddb77e commit 4a0b79f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ArchiSteamFarm/Steam/Cards/CardsFarmer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ internal async Task StartFarming() {
}

// This is the last moment for final check if we can farm
if (!Bot.IsPlayingPossible) {
if (Paused || !Bot.IsPlayingPossible) {
Bot.ArchiLogger.LogGenericInfo(Strings.PlayingNotAvailable);

return;
Expand All @@ -372,7 +372,7 @@ internal async Task StartFarming() {
return;
}

if (!Bot.IsPlayingPossible) {
if (Paused || !Bot.IsPlayingPossible) {
Bot.ArchiLogger.LogGenericInfo(Strings.PlayingNotAvailable);

return;
Expand Down

0 comments on commit 4a0b79f

Please sign in to comment.