diff --git a/uqcsbot/whatweekisit.py b/uqcsbot/whatweekisit.py index 6b996ba..f655b3e 100644 --- a/uqcsbot/whatweekisit.py +++ b/uqcsbot/whatweekisit.py @@ -5,6 +5,7 @@ from zoneinfo import ZoneInfo from datetime import datetime, timedelta from math import ceil +from random import choice from bs4 import BeautifulSoup from discord.ext import commands @@ -158,11 +159,29 @@ async def whatweekisit(self, interaction: discord.Interaction, date: Optional[st else: semester_name, week_name, weekday = semester_tuple - message = ( - "The week we're in is:" - if date == None - else f"The week of {date} is in:" - ) + if date != None: + message = f"The week of {date} is in:" + else: + message = choice( + [ + "The week we're in is:", + "The current week is:", + "Currently, the week is:", + "Hey, look at the time:", + f"Can you believe that it's already {week_name}:", + "Time flies when you're having fun:", + "Maybe time's just a construct of human perception:", + "Time waits for noone:", + "This week is:", + "It is currently:", + "The week is", + "The week we're currently in is:", + f"Right now we are in:", + "Good heavens, would you look at the time:", + "What's the time, mister wolf? It's:", + ] + ) + message += f"\n> {weekday}, {week_name} of {semester_name}" await interaction.edit_original_response(content=message)