Skip to content

Commit 3c49ddf

Browse files
authored
[ots] Fix #75
1 parent 25440ae commit 3c49ddf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

onetrueslash/commands.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ async def onetrueslash(
4242
error = None
4343
if command == "help":
4444
ctx._deferring = True
45-
ctx.interaction = interaction
45+
# 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
4648
await interaction.response.defer(ephemeral=True)
4749
actual = None
4850
if arguments:

0 commit comments

Comments
 (0)