From a41f159731b580852661bd8f222e730dc737e664 Mon Sep 17 00:00:00 2001 From: Samuel Johnson Date: Fri, 9 Jan 2026 13:52:51 -0500 Subject: Remove annoying initial tables --- src/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/main.py') diff --git a/src/main.py b/src/main.py index d3950fc..b6a7e1c 100644 --- a/src/main.py +++ b/src/main.py @@ -21,10 +21,11 @@ async def ping(ctx): @bot.command(name="Explain", aliases=["explain", "What's", "what's"]) async def explain(ctx, *args): - if args[0].lower == "whfb": + args = list(args) + if args[0].lower() == "whfb": args.pop(0) config["site"] = "https://whfb.lexicanum.com" - if args[0].lower == "aos": + if args[0].lower() == "aos": args.pop(0) config["site"] = "https://ageofsigmar.lexicanum.com" -- cgit v1.2.3