From 671640258c4690bf78ec636ab66084d8bd13631d Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Sat, 10 Feb 2024 19:47:35 -0500 Subject: Fix a strange issue pending further investigation --- question_of_the_day/question_of_the_day.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'question_of_the_day/question_of_the_day.py') diff --git a/question_of_the_day/question_of_the_day.py b/question_of_the_day/question_of_the_day.py index 391352b..bbbad9d 100644 --- a/question_of_the_day/question_of_the_day.py +++ b/question_of_the_day/question_of_the_day.py @@ -102,7 +102,7 @@ class QuestionOfTheDay(commands.Cog): pass @qotd.command() - @checks.admin_or_permissions(manage_server=True) + @commands.admin() async def add(self, ctx, *, question: str): """ Add a question directly to the main queue (requires elevated permissions). @@ -132,7 +132,7 @@ class QuestionOfTheDay(commands.Cog): await ctx.reply("No questions yet.") @qotd.command() - @checks.admin_or_permissions(manage_server=True) + @commands.admin() async def remove(self, ctx, question_id: int): """ Remove a question from the queue using its id (see `qotd list`). @@ -145,7 +145,7 @@ class QuestionOfTheDay(commands.Cog): await ctx.reply(f"Error: no question with id {question_id}.") @qotd.command() - @checks.admin_or_permissions(manage_server=True) + @commands.admin() async def post(self, ctx): """ Post a question immediately. @@ -163,7 +163,7 @@ class QuestionOfTheDay(commands.Cog): ) @qotd.command() - @checks.admin_or_permissions(manage_server=True) + @commands.admin() async def post_at(self, ctx, hour_after_midnight_utc: int, minute_after_hour: int): """Set the time to post a QOTD every day in this server.""" if ( @@ -200,7 +200,7 @@ class QuestionOfTheDay(commands.Cog): ) @qotd.command() - @checks.admin_or_permissions(manage_server=True) + @commands.admin() async def post_here(self, ctx): """ Set the current channel as where QOTDs should be posted. @@ -212,7 +212,7 @@ class QuestionOfTheDay(commands.Cog): await ctx.reply("Error: must use a text channel.") @qotd.command() - @checks.admin_or_permissions(manage_server=True) + @commands.admin() async def toggle(self, ctx): """ Turn on or off automatic posting of questions of the day in this server. @@ -267,7 +267,7 @@ class QuestionOfTheDay(commands.Cog): await ctx.reply("No suggested questions yet.") @qotd.command() - @checks.admin_or_permissions(manage_server=True) + @commands.admin() async def approve(self, ctx, suggestion_id: int | typing.Literal["all"]): """ Approve a suggestion using its id (see `qotd suggestions`). @@ -320,7 +320,7 @@ class QuestionOfTheDay(commands.Cog): ) @qotd.command() - @checks.admin_or_permissions(manage_server=True) + @commands.admin() async def deny(self, ctx, suggestion_id: int): """ Decline a suggestion and remove it from the suggestion queue. -- cgit v1.2.3-57-g22cb