mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 15:14:41 +00:00
parent
e8335ac183
commit
ef29b6f33d
1 changed files with 3 additions and 1 deletions
|
@ -150,7 +150,9 @@ namespace ArchiSteamFarm {
|
|||
if (!bot.Enabled) {
|
||||
Logging.LogGenericInfo(botName, "Not starting this instance because it's disabled in config file");
|
||||
}
|
||||
Thread.Sleep(1000); // Try to avoid spamming steam
|
||||
Random random = new Random();
|
||||
int randomNumber = random.Next(5, 15); // pick random number between 5 and 15
|
||||
Thread.Sleep(randomNumber*1000); // Try to avoid spamming steam
|
||||
}
|
||||
|
||||
// Check if we got any bots running
|
||||
|
|
Loading…
Reference in a new issue