diff options
-rw-r--r-- | bot/seasons/christmas/__init__.py | 2 | ||||
-rw-r--r-- | bot/seasons/halloween/__init__.py | 2 | ||||
-rw-r--r-- | bot/seasons/pride/__init__.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bot/seasons/christmas/__init__.py b/bot/seasons/christmas/__init__.py index 239181f4..ae93800e 100644 --- a/bot/seasons/christmas/__init__.py +++ b/bot/seasons/christmas/__init__.py @@ -18,7 +18,7 @@ class Christmas(SeasonBase): greeting = "Happy Holidays!" start_date = "01/12" - end_date = "31/12" + end_date = "01/01" colour = Colours.dark_green icon = ( diff --git a/bot/seasons/halloween/__init__.py b/bot/seasons/halloween/__init__.py index aff51423..e40e3dc9 100644 --- a/bot/seasons/halloween/__init__.py +++ b/bot/seasons/halloween/__init__.py @@ -10,7 +10,7 @@ class Halloween(SeasonBase): greeting = "Happy Halloween!" start_date = "01/10" - end_date = "31/10" + end_date = "01/11" colour = Colours.orange icon = ( diff --git a/bot/seasons/pride/__init__.py b/bot/seasons/pride/__init__.py index b1897eca..75e90b2a 100644 --- a/bot/seasons/pride/__init__.py +++ b/bot/seasons/pride/__init__.py @@ -27,7 +27,7 @@ class Pride(SeasonBase): # Duration of season start_date = "01/06" - end_date = "30/06" + end_date = "01/07" # Season logo colour = Colours.soft_red |