Capitalize ENV vars

This commit is contained in:
Marco Thomas
2020-09-07 17:22:54 +02:00
parent 98203c0e6b
commit d43575a8e0
3 changed files with 17 additions and 17 deletions

View File

@@ -7,7 +7,7 @@ import discord
from discord.ext import commands
# IMPORTS - internal
from __main__ import prefix
from __main__ import PREFIX
# COG INIT
class Help(commands.Cog):
@@ -24,7 +24,7 @@ class Help(commands.Cog):
embed.set_thumbnail(url=ctx.me.avatar_url)
embed.add_field(name="Owner", value=self.bot.AppInfo.owner, inline=True)
embed.add_field(name="Command Prefix", value=prefix, inline=True)
embed.add_field(name="Command Prefix", value=PREFIX, inline=True)
embed.add_field(name="Source Code", value="[GitHub](https://github.com/crammk/aquabot)", inline=True)
footer_text = "This Bot is a project by [MarcMK](https://marcmk.de)."