diff options
Diffstat (limited to 'question_of_the_day/question_of_the_day.py')
-rw-r--r-- | question_of_the_day/question_of_the_day.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/question_of_the_day/question_of_the_day.py b/question_of_the_day/question_of_the_day.py index 029cddb..e4514ba 100644 --- a/question_of_the_day/question_of_the_day.py +++ b/question_of_the_day/question_of_the_day.py @@ -143,6 +143,11 @@ class QuestionOfTheDay(commands.Cog): @qotd.command() @checks.admin_or_permissions(manage_server=True) async def post(self, ctx): + """ + Post a question immediately. + + A question will still be sent at the scheduled time if automatic posting is enabled. + """ channel_id = await self.config.guild(ctx.guild).post_in_channel() if channel_id: await self.send_question_to_channel( |