mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Misc
This commit is contained in:
@@ -270,7 +270,7 @@ namespace ArchiSteamFarm {
|
||||
if (Bot.PlayingWasBlocked) {
|
||||
Bot.ArchiLogger.LogGenericInfo(string.Format(Strings.BotExtraIdlingCooldown, TimeSpan.FromSeconds(Bot.MinPlayingBlockedTTL).ToHumanReadable()));
|
||||
|
||||
for (byte i = 0; (i < Bot.MinPlayingBlockedTTL) && Bot.IsPlayingPossible; i++) {
|
||||
for (byte i = 0; (i < Bot.MinPlayingBlockedTTL) && Bot.IsPlayingPossible && Bot.PlayingWasBlocked; i++) {
|
||||
await Task.Delay(1000).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
|
||||
2
ArchiSteamFarm/Localization/Strings.Designer.cs
generated
2
ArchiSteamFarm/Localization/Strings.Designer.cs
generated
@@ -313,7 +313,7 @@ namespace ArchiSteamFarm.Localization {
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Wyszukuje zlokalizowany ciąg podobny do ciągu Waiting additional {0} to ensure that we're free to start idling....
|
||||
/// Wyszukuje zlokalizowany ciąg podobny do ciągu Waiting up to {0} to ensure that we're free to start idling....
|
||||
/// </summary>
|
||||
public static string BotExtraIdlingCooldown {
|
||||
get {
|
||||
|
||||
@@ -725,7 +725,7 @@ StackTrace:
|
||||
<comment>{0} will be replaced by number of confirmations</comment>
|
||||
</data>
|
||||
<data name="BotExtraIdlingCooldown" xml:space="preserve">
|
||||
<value>Waiting additional {0} to ensure that we're free to start idling...</value>
|
||||
<value>Waiting up to {0} to ensure that we're free to start idling...</value>
|
||||
<comment>{0} will be replaced by translated TimeSpan string (such as "1 minute")</comment>
|
||||
</data>
|
||||
</root>
|
||||
Reference in New Issue
Block a user