diff options
Diffstat (limited to 'src/main.py')
| -rw-r--r-- | src/main.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.py b/src/main.py index c773f4f..b16794d 100644 --- a/src/main.py +++ b/src/main.py @@ -22,13 +22,13 @@ async def ping(ctx): @bot.command(name="Explain", aliases=["explain", "What's", "what's"]) async def explain(ctx, *args): args = list(args) - if args[0].lower() == "whfb": + if args[0].lower() == "!fantasy": args.pop(0) config["site"] = "https://whfb.lexicanum.com" - elif args[0].lower() == "wh40k": + elif args[0].lower() == "!40k": args.pop(0) config["site"] = "https://wh40k.lexicanum.com" - elif args[0].lower() == "aos": + elif args[0].lower() == "!aos": args.pop(0) config["site"] = "https://ageofsigmar.lexicanum.com" else: |
