aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Bradley Reynolds <[email protected]>2023-12-02 00:52:00 -0600
committerGravatar GitHub <[email protected]>2023-12-02 00:52:00 -0600
commit1871a062b6a1b0ae6e9eb2ff67072b48f9a3d8fc (patch)
treeee0fd0ee0fa10327317ab72dcd6a13a1220e84eb
parentBump sentry-sdk from 1.37.1 to 1.38.0 (#1402) (diff)
Replace or with space in christmas tree holiday reaction
It's reacting to GitHub links that contain /tree/
-rw-r--r--bot/exts/holidays/holidayreact.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/holidays/holidayreact.py b/bot/exts/holidays/holidayreact.py
index ef44115a..bd70b831 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"]),