diff options
author | 2023-02-01 21:28:01 -0500 | |
---|---|---|
committer | 2023-02-01 21:28:01 -0500 | |
commit | fbe397ca50fc338609cafe5e3c039fd8f208a344 (patch) | |
tree | 861de3f7d1595acf5f33fcc62f2b35c9c10dae9a /bot/exts/holidays/holidayreact.py | |
parent | Bump flake8-docstrings from 1.6.0 to 1.7.0 (#1199) (diff) |
Move Earth Day to April, where it belongs
Diffstat (limited to 'bot/exts/holidays/holidayreact.py')
-rw-r--r-- | bot/exts/holidays/holidayreact.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/holidays/holidayreact.py b/bot/exts/holidays/holidayreact.py index 2a1347e5..ee20b792 100644 --- a/bot/exts/holidays/holidayreact.py +++ b/bot/exts/holidays/holidayreact.py @@ -37,7 +37,7 @@ Easter = Holiday([Month.APRIL], { "egg": Trigger(r"\begg\b", ["\U0001F95A"]), } ) -EarthDay = Holiday([Month.FEBRUARY], { +EarthDay = Holiday([Month.APRIL], { "earth": Trigger(r"\b(earth|planet)\b", ["\U0001F30E", "\U0001F30D", "\U0001F30F"]), } ) |