diff --git a/src/bot/cogs/features/_latex_utilities.py b/src/bot/cogs/features/_latex_utilities.py index c97a6e6..6d7f93c 100644 --- a/src/bot/cogs/features/_latex_utilities.py +++ b/src/bot/cogs/features/_latex_utilities.py @@ -126,7 +126,13 @@ async def publish( ) return - await interaction.followup.send(embed=embed) + channel = interaction.channel + + if isinstance(channel, (discord.TextChannel, discord.Thread)): + await channel.send( + content=interaction.user.mention, + embed=embed, + ) for child in self.children: if isinstance(child, discord.ui.Button):