From bcc902a9a75da71dee1b9980fab5fec84b7f5fbd Mon Sep 17 00:00:00 2001 From: AstreaTSS <25420078+AstreaTSS@users.noreply.github.com> Date: Wed, 5 Jul 2023 00:14:16 -0400 Subject: [PATCH] fix: properly pass in ephemeral for hybrid ctx --- interactions/ext/hybrid_commands/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interactions/ext/hybrid_commands/context.py b/interactions/ext/hybrid_commands/context.py index 95c444d73..d2fc38830 100644 --- a/interactions/ext/hybrid_commands/context.py +++ b/interactions/ext/hybrid_commands/context.py @@ -290,7 +290,7 @@ async def send( New message object that was sent. """ flags = MessageFlags(flags or 0) - if ephemeral and not self._slash_ctx: + if ephemeral and self._slash_ctx: flags |= MessageFlags.EPHEMERAL self.ephemeral = True if suppress_embeds: