From 2bd97b1ba0b305b4d56a09debd459d58f246bebc Mon Sep 17 00:00:00 2001 From: Conatum Date: Tue, 14 Sep 2021 05:38:05 +0300 Subject: [PATCH] (cointop): Fix typo in alias check. --- bot/modules/economy/cointop_cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/modules/economy/cointop_cmd.py b/bot/modules/economy/cointop_cmd.py index fbf45c71..fb2301da 100644 --- a/bot/modules/economy/cointop_cmd.py +++ b/bot/modules/economy/cointop_cmd.py @@ -36,7 +36,7 @@ async def cmd_topcoin(ctx): return await ctx.error_reply( "**Usage:**`{prefix}topcoin` or `{prefix}topcoin100`.".format(prefix=ctx.best_prefix) ) - top100 = (ctx.args == "100" or ctx.alias == "contop100") + top100 = (ctx.args == "100" or ctx.alias == "cointop100") # Flush any pending coin transactions Lion.sync()