We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25440ae commit 3c49ddfCopy full SHA for 3c49ddf
onetrueslash/commands.py
@@ -42,7 +42,9 @@ async def onetrueslash(
42
error = None
43
if command == "help":
44
ctx._deferring = True
45
- ctx.interaction = interaction
+ # Moving ctx._interaction can cause check errors with some hybrid commands
46
+ # see https://github.com/Zephyrkul/FluffyCogs/issues/75 for details
47
+ # ctx.interaction = interaction
48
await interaction.response.defer(ephemeral=True)
49
actual = None
50
if arguments:
0 commit comments