diff options
author | 2019-03-30 17:38:31 +1000 | |
---|---|---|
committer | 2019-03-30 17:38:31 +1000 | |
commit | 7a7f86d8ecc9e15707894fdec1e643b0d5966a5e (patch) | |
tree | c020a57845b0fb75d2c152c3fcdeeb52df3af18d | |
parent | Merge pull request #142 from Suhail6inkling/timeleft (diff) | |
parent | Add Easter icon url and embed colour. (diff) |
Merge pull request #161 from python-discord/easter_icon
Add Easter icon url and embed colour.
-rw-r--r-- | bot/seasons/easter/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bot/seasons/easter/__init__.py b/bot/seasons/easter/__init__.py index bfad772d..f4e14821 100644 --- a/bot/seasons/easter/__init__.py +++ b/bot/seasons/easter/__init__.py @@ -1,3 +1,4 @@ +from bot.constants import Colours from bot.seasons import SeasonBase @@ -15,3 +16,6 @@ class Easter(SeasonBase): # Duration of season start_date = "01/04" end_date = "30/04" + + colour = Colours.pink + icon = "/logos/logo_seasonal/easter/easter.png" |