aboutsummaryrefslogtreecommitdiffstats
path: root/bot/bot.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/bot.py')
-rw-r--r--bot/bot.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bot/bot.py b/bot/bot.py
index a67fcdab..f2a857bc 100644
--- a/bot/bot.py
+++ b/bot/bot.py
@@ -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.