aboutsummaryrefslogtreecommitdiff
path: root/modules/words.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/words.py')
-rw-r--r--modules/words.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/words.py b/modules/words.py
index 8982326c..b7e3e45c 100644
--- a/modules/words.py
+++ b/modules/words.py
@@ -1,8 +1,9 @@
import time
from src import EventManager, ModuleManager, utils
-WORD_START = "\"“'({<…"
-WORD_STOP = "\"”')}>;:.,!?~…"
+WORD_DELIM = "\"'…~*`"
+WORD_START = WORD_DELIM+"“({<"
+WORD_STOP = WORD_DELIM+"”)}>;:.,!?"
class Module(ModuleManager.BaseModule):
def _channel_message(self, user, event):