handle question marks in bigtext

This commit is contained in:
Luke Robles 2025-02-20 09:20:35 -08:00
parent 47adf49cd0
commit a71f44bd7c

View File

@ -396,7 +396,11 @@ class Cheeky(commands.Cog):
( (
":exclamation:" ":exclamation:"
if c == "!" 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() for c in input_string.lower()
] ]