Randomize and stagger posting intervals
This commit is contained in:
parent
e20a2b9f88
commit
2907cbc325
|
@ -51,7 +51,9 @@ class MyClient(discord.Client):
|
||||||
await channel.send(gen_sentence())
|
await channel.send(gen_sentence())
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
await asyncio.sleep(3600)
|
await asyncio.sleep((2700 + random.randrange(1800)) // min(max(len(self.guilds), 1), 100))
|
||||||
|
if self.is_closed():
|
||||||
|
break
|
||||||
|
|
||||||
client = MyClient()
|
client = MyClient()
|
||||||
with open('token') as f:
|
with open('token') as f:
|
||||||
|
|
Loading…
Reference in a new issue