handle question marks in bigtext
This commit is contained in:
parent
9579d54602
commit
f1f042e50e
@ -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()
|
||||
]
|
||||
|
Loading…
x
Reference in New Issue
Block a user