diff options
author | 2023-12-02 01:11:08 -0600 | |
---|---|---|
committer | 2023-12-02 01:11:08 -0600 | |
commit | f037d4d43348130fbe8c439dcb09bbcb13099052 (patch) | |
tree | 35b647a99c7740799cf42126a77296f03e403284 | |
parent | Replace or with space in christmas tree holiday reaction (diff) |
Add the or back in, but keep the space
-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 bd70b831..6cc41450 100644 --- a/bot/exts/holidays/holidayreact.py +++ b/bot/exts/holidays/holidayreact.py @@ -61,7 +61,7 @@ Hanukkah = Holiday([Month.NOVEMBER, Month.DECEMBER], { } ) Christmas = Holiday([Month.DECEMBER], { - "christmas tree": Trigger(r"\b((christ|x)mas tree)\b", ["\U0001F384"]), + "christmas tree": Trigger(r"\b((christ|x)mas| tree)\b", ["\U0001F384"]), "reindeer": Trigger(r"\b(reindeer|caribou|buck|stag)\b", ["\U0001F98C"]), "santa": Trigger(r"\bsanta\b", ["\U0001F385"]), "snowflake": Trigger(r"\b(snow ?)?flake(?! ?8)\b", ["\u2744\uFE0F"]), |