Compare commits

..

1 Commits

Author SHA1 Message Date
93c17112e3 Switch to explicit allowed prefix list. 2025-11-07 23:50:02 +10:00

View File

@@ -72,7 +72,7 @@ class FocusComponent(cmds.Component):
This amounts to whether it starts with a punctuation symbol, or it is only emotes and mentions.
"""
allowed = message.text.startswith(tuple(punctuation))
allowed = message.text.startswith(tuple("!*#%|?><."))
if not allowed:
allowed = True