handle question marks in bigtext

This commit is contained in:
Luke Robles 2025-02-20 09:20:35 -08:00
parent d15f2d0ce4
commit 40ffaf85d9

View File

@ -396,8 +396,12 @@ class Cheeky(commands.Cog):
(
":exclamation:"
if c == "!"
else (
":question:"
if c == "?"
else ":regional_indicator_{}:".format(c) if c != " " else " "
)
)
for c in input_string.lower()
]