diff options
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index a0b8bd60..fed41ab9 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -131,7 +131,12 @@ class Emojis: cross_mark = "\u274C" check = "\u2611" envelope = "\U0001F4E8" - trashcan = environ.get("TRASHCAN_EMOJI", "<:trashcan:637136429717389331>") + + trashcan = environ.get( + "TRASHCAN_EMOJI", + "\N{WASTEBASKET}" if Client.debug else "<:trashcan:637136429717389331>", + ) + ok_hand = ":ok_hand:" hand_raised = "\U0001F64B" |