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