From ebfc44fa2dcb90b09a315cb7d0b094ac3392a885 Mon Sep 17 00:00:00 2001 From: tamservo Date: Sat, 7 Oct 2023 09:21:02 -0400 Subject: [PATCH] Fixed issue with calling some commands (removed pass_filter) --- robottas.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/robottas.py b/robottas.py index 4f1ec15..230270d 100755 --- a/robottas.py +++ b/robottas.py @@ -707,8 +707,6 @@ class Robottas(commands.Bot): # Setup commands @self.command() async def rbhelp(ctx): - if not self.passed_filter(ctx): - return await ctx.send("commands: \n" + "!rbhelp - Print this help message " + @@ -731,17 +729,13 @@ class Robottas(commands.Bot): @self.command() async def rbroot(ctx): - if not self.passed_filter(ctx): - return await ctx.send("Rooting for :ferry::peach: of course!\n" + - ":BOT::smiling_face_with_3_hearts:") + self.name_dict["BOT"] + ":smiling_face_with_3_hearts:") @self.command() async def rbname(ctx): - if not self.passed_filter(ctx): - return await ctx.send("Hello, my name is Robottas, pronounced :robot::peach:")