diff options
| -rw-r--r-- | bot/cogs/bot.py | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py index 80cd7d3b0..3f0c8678d 100644 --- a/bot/cogs/bot.py +++ b/bot/cogs/bot.py @@ -252,7 +252,12 @@ class Bot:              on_cooldown = (time.time() - self.channel_cooldowns.get(msg.channel.id, 0)) < 300              if not on_cooldown:                  try: -                    not_backticks = ["'''", '"""', "´´´", "‘‘‘", "’’’", "′′′", "“““", "”””", "″″″", "〃〃〃"] +                    not_backticks = [ +                        "'''", '"""', "\u00b4\u00b4\u00b4", "\u2018\u2018\u2018", "\u2019\u2019\u2019", +                        "\u2032\u2032\u2032", "\u201c\u201c\u201c", "\u201d\u201d\u201d", "\u2033\u2033\u2033", +                        "\u3003\u3003\u3003" +                    ] +                      bad_ticks = msg.content[:3] in not_backticks                      if bad_ticks:                          ticks = msg.content[:3] | 
