diff --git a/app/cogs/cheeky_functions.py b/app/cogs/cheeky_functions.py index 6b39df42..dc8105da 100755 --- a/app/cogs/cheeky_functions.py +++ b/app/cogs/cheeky_functions.py @@ -396,7 +396,11 @@ class Cheeky(commands.Cog): ( ":exclamation:" if c == "!" - else ":regional_indicator_{}:".format(c) if c != " " else " " + else ( + ":question:" + if c == "?" + else ":regional_indicator_{}:".format(c) if c != " " else " " + ) ) for c in input_string.lower() ]