main: Small fixed for licences
All checks were successful
Build Docker / Build Master (push) Successful in 23s
Build Docker / Build Bot (push) Successful in 25s

This commit is contained in:
2023-08-25 14:20:58 +10:00
parent fb9295c260
commit d6dffc0464
2 changed files with 6 additions and 1 deletions

View File

@@ -16,6 +16,11 @@ if Master_Port == None:
FREE_LICENCE = os.getenv('FREE_LICENCE')
if FREE_LICENCE == None:
FREE_LICENCE = False
else:
if FREE_LICENCE.lower() == "true":
FREE_LICENCE = True
else:
FREE_LICENCE = False
intents = discord.Intents.default()
client = discord.Client(intents=intents)