From 45321f48487d4e0a685989d10d7609958fe6b9c5 Mon Sep 17 00:00:00 2001 From: Rafael Vargas Date: Tue, 28 Dec 2021 17:14:03 -0400 Subject: [PATCH] Changing the print of prefix --- vulkanbot/general/Control.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkanbot/general/Control.py b/vulkanbot/general/Control.py index 12849cf..3afb29a 100644 --- a/vulkanbot/general/Control.py +++ b/vulkanbot/general/Control.py @@ -27,7 +27,7 @@ class Control(commands.Cog): @commands.Cog.listener() async def on_command_error(self, ctx, error): if isinstance(error, MissingRequiredArgument): - await ctx.channel.send(f'Falta argumentos. Digite {self.__bot.prefix}help para ver os comandos') + await ctx.channel.send(f'Falta argumentos. Digite {config.BOT_PREFIX}help para ver os comandos') elif isinstance(error, CommandNotFound): await ctx.channel.send(f'O comando não existe') else: