From 7e2e39ef6cc4ca15d49afe9bbc48745710b64d6e Mon Sep 17 00:00:00 2001 From: Samuel Johnson Date: Sat, 10 Jan 2026 01:26:58 -0500 Subject: Correctly decompose other incorrect images --- src/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main.py') 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: -- cgit v1.2.3