From acf2484cbb0beb842c97eed90cc8648a0b669fbf Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 15 Jan 2024 15:24:18 +0000 Subject: [PATCH] fix(aurora): followup.send instead of response.send_message --- aurora/configuration/menus/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/configuration/menus/core.py b/aurora/configuration/menus/core.py index a2b4022..dea74d5 100644 --- a/aurora/configuration/menus/core.py +++ b/aurora/configuration/menus/core.py @@ -13,7 +13,7 @@ class Overrides(ui.View): async def auto_evidenceformat(self, interaction: Interaction, button: ui.Button): # pylint: disable=unused-argument await interaction.response.defer() if self.ctx.author != interaction.user: - await interaction.response.send_message("You cannot change this setting for other users.", ephemeral=True) + await interaction.followup.send("You cannot change this setting for other users.", ephemeral=True) return current_setting = await config.user(self.ctx.author).auto_evidenceformat() if current_setting is not None: