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