diff options
author | 2021-04-11 16:21:44 +0100 | |
---|---|---|
committer | 2021-04-11 16:21:44 +0100 | |
commit | 17cf2b391df6d02083386a450c0f4569ba421762 (patch) | |
tree | c4ce2635ab9d71f75152369c1108da5ba495b7be /bot/constants.py | |
parent | Merge pull request #666 from onerandomusername/remove-topic (diff) |
Add env var for trashcan eomji override
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index 416dd0e7..1d35b3f1 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -153,7 +153,7 @@ class Emojis: christmas_tree = "\U0001F384" check = "\u2611" envelope = "\U0001F4E8" - trashcan = "<:trashcan:637136429717389331>" + trashcan = environ.get("TRASHCAN_EMOJI", "<:trashcan:637136429717389331>") ok_hand = ":ok_hand:" hand_raised = "\U0001f64b" |