Set default prefix
This commit is contained in:
parent
0f21810d2a
commit
74e408fa57
|
@ -1,3 +1,3 @@
|
|||
DISCORD_BOT_TOKEN=
|
||||
DISCORD_CMD_PREFIX=!
|
||||
DISCORD_CMD_PREFIX=
|
||||
YOUTUBE_COOKIES=youtube.com_cookies.txt
|
|
@ -152,7 +152,9 @@ class Music(commands.Cog):
|
|||
|
||||
|
||||
if __name__ == "__main__":
|
||||
bot = commands.Bot(command_prefix=commands.when_mentioned_or(os.environ.get("DISCORD_CMD_PREFIX", None)), description='Relatively simple music bot example')
|
||||
prefix = os.environ.get("DISCORD_CMD_PREFIX", "!")
|
||||
bot = commands.Bot(command_prefix=commands.when_mentioned_or(prefix),
|
||||
description='Relatively simple music bot example')
|
||||
|
||||
@bot.event
|
||||
async def on_ready():
|
||||
|
|
Loading…
Reference in New Issue