diff --git a/cogs/utils/chat_formatting.py b/cogs/utils/chat_formatting.py index a84a68717..22dbd96ef 100644 --- a/cogs/utils/chat_formatting.py +++ b/cogs/utils/chat_formatting.py @@ -10,6 +10,10 @@ def info(text): return "\N{INFORMATION SOURCE} {}".format(text) +def question(text): + return "\N{BLACK QUESTION MARK ORNAMENT} {}".format(text) + + def bold(text): return "**{}**".format(text)