fix: potentially fixed a bug in faq command
This commit is contained in:
parent
5647abc732
commit
40c7fd5b3c
1 changed files with 2 additions and 2 deletions
|
@ -322,9 +322,9 @@ class Galaxy(commands.Cog):
|
|||
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.**""")
|
||||
content = member.mention if member else None
|
||||
await interaction.response.send_message(content="Discord sucks!")
|
||||
await interaction.response.send_message(content="Discord sucks!", ephemeral=True)
|
||||
response: discord.InteractionMessage = await interaction.original_response()
|
||||
await response.delete
|
||||
await response.delete()
|
||||
if embed_secondary:
|
||||
await interaction.channel.send(content=content, embeds=[embed, embed_secondary])
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue