diff options
Diffstat (limited to 'bot/seasons/valentines/__init__.py')
| -rw-r--r-- | bot/seasons/valentines/__init__.py | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/bot/seasons/valentines/__init__.py b/bot/seasons/valentines/__init__.py index 6e5d16f7..fb3d02af 100644 --- a/bot/seasons/valentines/__init__.py +++ b/bot/seasons/valentines/__init__.py @@ -1,4 +1,4 @@ -from bot.constants import Colours +from bot.constants import Month from bot.seasons import SeasonBase @@ -9,14 +9,9 @@ class Valentines(SeasonBase): Get yourself into the bot-commands channel and check out the new features! """ - name = "valentines" - bot_name = "Tenderbot" - greeting = "Get loved-up!" + season_name = "Valentines" + bot_name = "TenderBot" - start_date = "01/02" - end_date = "01/03" + branding_path = "seasonal/valentines" - colour = Colours.pink - icon = ( - "/logos/logo_seasonal/valentines/loved_up.png", - ) + months = {Month.february} |