mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Misc
This commit is contained in:
parent
1ae59f4229
commit
63c61f8e47
1 changed files with 1 additions and 1 deletions
|
@ -1187,7 +1187,7 @@ public sealed class Bot : IAsyncDisposable, IDisposable {
|
|||
break;
|
||||
}
|
||||
|
||||
if ((packageData.ProhibitRunInCountries?.Contains(IPCountryCode) == true) || ((packageData.OnlyAllowRunInCountries?.Count > 0) && !packageData.OnlyAllowRunInCountries.Contains(IPCountryCode))) {
|
||||
if ((packageData.ProhibitRunInCountries?.Contains(IPCountryCode) == true) || (packageData.OnlyAllowRunInCountries is { IsEmpty: false } && !packageData.OnlyAllowRunInCountries.Contains(IPCountryCode))) {
|
||||
// We are restricted by this package, we can only be saved by another package that is not restricted
|
||||
DateTime regionRestrictedUntilPackage = ownedPackageData.TimeCreated.AddMonths(RegionRestrictionPlayableBlockMonths);
|
||||
|
||||
|
|
Loading…
Reference in a new issue