Skip to content

Commit

Permalink
add info emoji to footer of copied archives
Browse files Browse the repository at this point in the history
  • Loading branch information
Ast3risk-ops committed Dec 22, 2024
1 parent 389160d commit f62c430
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async def pin_callback(self, button, interaction):
@discord.ui.button(label="", style=discord.ButtonStyle.secondary, emoji="⬇️")
async def button2_callback(self, button, interaction):
for i in interaction.message.embeds:
i.set_footer(text="Go back to the original message to view attachments and embeds.")
i.set_footer(text="<:lucidebadgeinfo:1320455404479582249> Go back to the original message to view attachments and embeds.")
await interaction.message.reply(embed=i, view=DeleteBookmark())
for i in interaction.message.attachments:
await interaction.message.reply(i)
Expand Down
2 changes: 1 addition & 1 deletion main_emoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async def pin_callback(self, button, interaction):
@discord.ui.button(label="", style=discord.ButtonStyle.secondary, emoji="⬇️")
async def button2_callback(self, button, interaction):
for i in interaction.message.embeds:
i.set_footer(text="Go back to the original message to view attachments and embeds.")
i.set_footer(text="ℹ️ Go back to the original message to view attachments and embeds.")
await interaction.message.reply(embed=i, view=DeleteBookmark())
for i in interaction.message.attachments:
await interaction.message.reply(i)
Expand Down

0 comments on commit f62c430

Please sign in to comment.