Add command prefix environment variable

This commit is contained in:
Johannes Daub 2021-10-27 17:17:56 +02:00
parent 1e5fb1af71
commit 0f21810d2a
2 changed files with 2 additions and 1 deletions

View File

@ -1,2 +1,3 @@
DISCORD_BOT_TOKEN=
DISCORD_CMD_PREFIX=!
YOUTUBE_COOKIES=youtube.com_cookies.txt

View File

@ -152,7 +152,7 @@ class Music(commands.Cog):
if __name__ == "__main__":
bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"), description='Relatively simple music bot example')
bot = commands.Bot(command_prefix=commands.when_mentioned_or(os.environ.get("DISCORD_CMD_PREFIX", None)), description='Relatively simple music bot example')
@bot.event
async def on_ready():