Fixed issue with calling some commands (removed pass_filter)

This commit is contained in:
tamservo 2023-10-07 09:21:02 -04:00
parent 5834927d3e
commit ebfc44fa2d

View File

@ -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:")