From d3ce007eedbbc3493a0261d4f36fc85dba38f697 Mon Sep 17 00:00:00 2001 From: agessaman Date: Sun, 7 Sep 2025 15:48:52 -0700 Subject: [PATCH] Fix @ command to only match at beginning of messages --- modules/commands/at_phrase_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/commands/at_phrase_command.py b/modules/commands/at_phrase_command.py index 14793a9..dad084a 100644 --- a/modules/commands/at_phrase_command.py +++ b/modules/commands/at_phrase_command.py @@ -13,7 +13,7 @@ class AtPhraseCommand(BaseCommand): # Plugin metadata name = "at_phrase" - keywords = ['@', '@string', 'string'] + keywords = [] # No keywords - only use custom syntax matching description = "Responds to '@{string}' with ack + connection info (DM and non-Public channels)" category = "custom_syntax" requires_dm = False # Allow in channels, but restrict to non-Public channels in matches_custom_syntax