mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-08 10:22:31 -05:00
[Utils] Fixed chat_formatting functions for mobile compatibility
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user