diff options
Diffstat (limited to 'bot/bot.py')
-rw-r--r-- | bot/bot.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,13 +1,14 @@ +from os import environ from pathlib import Path from sys import stderr from traceback import print_exc -from os import environ from discord.ext import commands - HACKTOBERBOT_TOKEN = environ.get('HACKTOBERBOT_TOKEN') -bot = commands.Bot(command_prefix=commands.when_mentioned_or('!')) + +ghost_unicode = "\N{GHOST}" +bot = commands.Bot(command_prefix=commands.when_mentioned_or(".", f"{ghost_unicode} ", ghost_unicode)) if __name__ == '__main__': # Scan for files in the /cogs/ directory and make a list of the file names. |