handle question marks in bigtext
This commit is contained in:
parent
47adf49cd0
commit
a71f44bd7c
@ -396,8 +396,12 @@ class Cheeky(commands.Cog):
|
|||||||
(
|
(
|
||||||
":exclamation:"
|
":exclamation:"
|
||||||
if c == "!"
|
if c == "!"
|
||||||
|
else (
|
||||||
|
":question:"
|
||||||
|
if c == "?"
|
||||||
else ":regional_indicator_{}:".format(c) if c != " " else " "
|
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