diff options
author | 2019-03-30 11:16:32 +0100 | |
---|---|---|
committer | 2019-03-30 11:16:32 +0100 | |
commit | 7b5f1d38319f31f83b0a87aee78e21b25d7b9308 (patch) | |
tree | 50fccc8b90538e3490df3f38cdd0a78bbe18ab77 | |
parent | Merge pull request #162 from python-discord/announce_fix (diff) | |
parent | Word announcement as suggested by lmn. (diff) |
Merge pull request #163 from python-discord/easter_announce
Improved the Easter announcement to include information on our Easter event and to redirect members to our event channel.
-rw-r--r-- | bot/seasons/easter/__init__.py | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/bot/seasons/easter/__init__.py b/bot/seasons/easter/__init__.py index f4e14821..4d7e8467 100644 --- a/bot/seasons/easter/__init__.py +++ b/bot/seasons/easter/__init__.py @@ -4,14 +4,25 @@ from bot.seasons import SeasonBase class Easter(SeasonBase): """ - Easter is a beautiful time of the year often celebrated after the first Full Moon of the new spring season. - This time is quite beautiful due to the colorful flowers coming out to greet us. So. let's greet Spring - in an Easter celebration of contributions. + Here at Python Discord, we celebrate our version of Easter during the entire month of April. + While this celebration takes place, you'll notice a few changes: + + • The server icon has changed to our Easter icon. Thanks to <@140605665772175361> for the + design! + + • [Easter issues now available for SeasonalBot on the repo](https://git.io/fjkvQ). + + • You may see stuff like an Easter themed esoteric challenge, a celebration of Earth Day, or + Easter-related micro-events for you to join. Stay tuned! + + If you'd like to contribute, head on over to <#542272993192050698> and we will help you get + started. It doesn't matter if you're new to open source or Python, if you'd like to help, we + will find you a task and teach you what you need to know. """ name = "easter" bot_name = "BunnyBot" - greeting = "Happy Easter to us all!" + greeting = "Happy Easter!" # Duration of season start_date = "01/04" |