Update main.py
This commit is contained in:
parent
165633cea5
commit
9a039e98d7
1 changed files with 2 additions and 2 deletions
4
main.py
4
main.py
|
@ -105,7 +105,7 @@ intervals = 0
|
||||||
alreadyGenerating = False
|
alreadyGenerating = False
|
||||||
|
|
||||||
async def AddAutoGen(amount):
|
async def AddAutoGen(amount):
|
||||||
if amount > 10 or !autogen:
|
if amount > 10 or not autogen:
|
||||||
return
|
return
|
||||||
for i in range(amount):
|
for i in range(amount):
|
||||||
v = random.choice([0,1,2,3 ])
|
v = random.choice([0,1,2,3 ])
|
||||||
|
@ -177,5 +177,5 @@ async def on_ready():
|
||||||
|
|
||||||
keep_alive()
|
keep_alive()
|
||||||
|
|
||||||
my_secret = os.environ['discordbot']
|
my_secret = os.environ['DISCORDBOT']
|
||||||
client.run(my_secret)
|
client.run(my_secret)
|
||||||
|
|
Loading…
Reference in a new issue