diff --git a/sausage_bot/cogs/quote.py b/sausage_bot/cogs/quote.py index 55c9ee9..a5ec4b3 100755 --- a/sausage_bot/cogs/quote.py +++ b/sausage_bot/cogs/quote.py @@ -488,6 +488,10 @@ def check(interaction: discord.Interaction, reaction, user): ) return + @commands.check_any( + commands.is_owner(), + commands.has_permissions(administrator=True) + ) @group.command( name="count", description="Count the number of quotes" )