From 52fc242d456618bd5a5e3293388eb0418115f478 Mon Sep 17 00:00:00 2001 From: Mohammad Ibrahim <74553450+Ibrahim2750mi@users.noreply.github.com> Date: Sun, 26 Feb 2023 19:29:53 +0530 Subject: Add default unicode emoji for trashcan (#1217) * Add default unicode emoji for trashcan * Fix keeping the emoji for pydis and default unicode emoji for forks * Remove extra vairable in `Emoji` Co-authored-by: wookie184 * Remove f-string without placeholder The flake8 life. --------- Co-authored-by: wookie184 --- bot/constants.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'bot/constants.py') 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" -- cgit v1.2.3