From 776c90effd2740ff1483837ecf20af317322c01a Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 27 Sep 2023 13:41:36 -0400 Subject: [PATCH] fix(shortmute): made an error message epheremal --- shortmute/shortmute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shortmute/shortmute.py b/shortmute/shortmute.py index 7141c50..449216c 100644 --- a/shortmute/shortmute.py +++ b/shortmute/shortmute.py @@ -72,7 +72,7 @@ class Shortmute(commands.Cog): await interaction.response.send_message(content="You're trying to shortmute someone who is immune from shortmuting.", ephemeral=True) return if target.guild_permissions.administrator is True: - await interaction.response.send_message(content="You cannot shortmute people with the Administrator permission!") + await interaction.response.send_message(content="You cannot shortmute people with the Administrator permission!", ephemeral=True) return if duration in (1, -1): readable_duration = f"{duration} minute"