Update main.py

This commit is contained in:
7trail 2023-08-28 19:54:34 -05:00 committed by GitHub
parent 165633cea5
commit 9a039e98d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -105,7 +105,7 @@ intervals = 0
alreadyGenerating = False
async def AddAutoGen(amount):
if amount > 10 or !autogen:
if amount > 10 or not autogen:
return
for i in range(amount):
v = random.choice([0,1,2,3 ])
@ -177,5 +177,5 @@ async def on_ready():
keep_alive()
my_secret = os.environ['discordbot']
my_secret = os.environ['DISCORDBOT']
client.run(my_secret)