diff --git a/cogs/utils/chat_formatting.py b/cogs/utils/chat_formatting.py index 5344ca6f6..a84a68717 100644 --- a/cogs/utils/chat_formatting.py +++ b/cogs/utils/chat_formatting.py @@ -1,13 +1,13 @@ def error(text): - return ":no_entry_sign: {}".format(text) + return "\N{NO ENTRY SIGN} {}".format(text) def warning(text): - return ":warning: {}".format(text) + return "\N{WARNING SIGN} {}".format(text) def info(text): - return ":information_source: {}".format(text) + return "\N{INFORMATION SOURCE} {}".format(text) def bold(text):