[Tell] Desperate try to fix shit

This commit is contained in:
sfan5 2014-06-14 19:49:33 +02:00
parent bc245a4be5
commit d70f3d3888

View File

@ -84,6 +84,7 @@ def note(phenny, input):
note.rule = r'.*' note.rule = r'.*'
note.priority = 'low' note.priority = 'low'
note.thread = True
def note_join(phenny, input): def note_join(phenny, input):
if input.sender.startswith('#'): if input.sender.startswith('#'):
@ -92,6 +93,7 @@ def note_join(phenny, input):
note_join.rule = r'.*' note_join.rule = r'.*'
note_join.event = 'JOIN' note_join.event = 'JOIN'
note_join.priority = 'low' note_join.priority = 'low'
note_join.thread = True
db = sqlite3.connect("tell.sqlite") db = sqlite3.connect("tell.sqlite")
c = db.cursor() c = db.cursor()