satan command

This commit is contained in:
2025-04-26 20:05:04 -04:00
parent 4d331b7ffd
commit 5bde6ac880

View File

@ -1285,6 +1285,16 @@ class Misc(commands.Cog):
traceback.print_exc()
return await ctx.respond(f"Error: {str(e)}")
@bridge.bridge_command() # type: ignore
async def satan(self, ctx) -> None:
"""
Satan(!?)
"""
out_msg: str = (
"## There is no Satan\n" "### He isn't real.\n" "-# And neither are you."
)
return await ctx.respond(out_msg)
@bridge.bridge_command() # type: ignore
@is_spamchan_or_drugs()
async def joint(self, ctx, *, recipient: Optional[str] = None) -> None: