Added branch variable

This commit is contained in:
Lukas Blacha
2023-02-08 11:45:52 +01:00
parent c08bad409f
commit c1e731aa4d

View File

@@ -16,6 +16,7 @@ banner = """
_| _| \__,_| ____/ _| \___| ____/ \___/ \__|
"""
version = "0.1"
branch = "dev"
success = "**Success ✅**\n"
warning = "**Warning **\n"
error = "**Error ❗️**\n"
@@ -112,7 +113,7 @@ else:
@bot.event
async def on_ready():
print(banner)
print(f"Bot Version: {version}")
print(f"Bot Version: {version} ({branch})")
print(f"Bot: {bot.user} (ID: {bot.user.id})")
print(
f"Invitation LINK: https://discord.com/api/oauth2/authorize?client_id={bot.user.id}&permissions=968552344896&scope=bot%20applications.commands")