diff options
Diffstat (limited to 'bot/seasons/halloween/__init__.py')
| -rw-r--r-- | bot/seasons/halloween/__init__.py | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/bot/seasons/halloween/__init__.py b/bot/seasons/halloween/__init__.py index c81879d7..b20da9ac 100644 --- a/bot/seasons/halloween/__init__.py +++ b/bot/seasons/halloween/__init__.py @@ -1,4 +1,4 @@ -from bot.constants import Colours +from bot.constants import Month from bot.seasons import SeasonBase @@ -11,14 +11,9 @@ class Halloween(SeasonBase): make sure to update this docstring accordingly. """ - name = "halloween" + season_name = "Halloween" bot_name = "NeonBot" - greeting = "Happy Halloween!" - start_date = "01/10" - end_date = "01/11" + branding_path = "seasonal/halloween" - colour = Colours.pink - icon = ( - "/logos/logo_seasonal/hacktober/hacktoberfest.png", - ) + months = {Month.october} |