From a71f44bd7c82d3c13d58ada13008b2a4aa17270c Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Thu, 20 Feb 2025 09:20:35 -0800 Subject: [PATCH] handle question marks in bigtext --- app/cogs/cheeky_functions.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/cogs/cheeky_functions.py b/app/cogs/cheeky_functions.py index 6b39df42..dc8105da 100755 --- a/app/cogs/cheeky_functions.py +++ b/app/cogs/cheeky_functions.py @@ -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() ]