From 5647abc732d1539e9a994c8ac846ee29e1a676bd Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 11 Aug 2023 00:10:59 -0400 Subject: [PATCH] fix: faq no longer shows "user used faq" --- galaxy/galaxy.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index f0c0f8f..826baed 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -320,12 +320,15 @@ class Galaxy(commands.Cog): embed.add_field(name="DJ", value="Level 11", inline=False) embed.add_field(name="Reaction Perms", value="Level 30", inline=False) elif answer.value == 'ropro': - embed=discord.Embed(title="RoPro", url="https://ropro.io", color=await self.bot.get_embed_color(None), description="""[RoPro](https://ropro.io) is a browser extension that tracks ROBLOX playtime, enhances your profile, and provides other useful utilities. **Please keep in mind that RoPro only tracks playtime from AFTER you install the extension.**""") + embed = discord.Embed(title="RoPro", url="https://ropro.io", color=await self.bot.get_embed_color(None), description="""[RoPro](https://ropro.io) is a browser extension that tracks ROBLOX playtime, enhances your profile, and provides other useful utilities. **Please keep in mind that RoPro only tracks playtime from AFTER you install the extension.**""") content = member.mention if member else None + await interaction.response.send_message(content="Discord sucks!") + response: discord.InteractionMessage = await interaction.original_response() + await response.delete if embed_secondary: - await interaction.response.send_message(content=content, embeds=[embed, embed_secondary]) + await interaction.channel.send(content=content, embeds=[embed, embed_secondary]) else: - await interaction.response.send_message(content=content, embed=embed) + await interaction.channel.send(content=content, embed=embed) # @faq.command(name="polaris_switch") # @checks.admin()