mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Misc
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.
This commit is contained in:
@@ -352,7 +352,7 @@ public sealed class CardsFarmer : IAsyncDisposable, IDisposable {
|
||||
}
|
||||
|
||||
// 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;
|
||||
@@ -372,7 +372,7 @@ public sealed class CardsFarmer : IAsyncDisposable, IDisposable {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Bot.IsPlayingPossible) {
|
||||
if (Paused || !Bot.IsPlayingPossible) {
|
||||
Bot.ArchiLogger.LogGenericInfo(Strings.PlayingNotAvailable);
|
||||
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user