handle question marks in bigtext
This commit is contained in:
parent
d15f2d0ce4
commit
40ffaf85d9
@ -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