I found this from the docs showing how to change the behavior of a command. But how would I convert the prefix command to a slash command since my verified bot doesn't have the message content intent?
from jishaku.features.baseclass import Feature
class CustomDebugCog(*OPTIONAL_FEATURES, *STANDARD_FEATURES):
@Feature.Command(parent="jsk", name="python")
async def jsk_python(self, ctx: commands.Context):
# Do jsk py magic here to eval the code from an argument
I found this from the docs showing how to change the behavior of a command. But how would I convert the prefix command to a slash command since my verified bot doesn't have the message content intent?