fixed bug in feelings.py and violence.py
This commit is contained in:
parent
ac5d313471
commit
da3e3ab028
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ from util import hook
|
|||
import re
|
||||
import random
|
||||
|
||||
nick_re = re.compile(r"^[A-Za-z0-9_|.-\]\[]*$")
|
||||
nick_re = re.compile(r"^[A-Za-z0-9_|\.\-\]\[]*$")
|
||||
|
||||
insults = []
|
||||
flirts = []
|
||||
|
|
|
@ -2,7 +2,7 @@ from util import hook
|
|||
import re
|
||||
import random
|
||||
|
||||
nick_re = re.compile(r"^[A-Za-z0-9_|.-\]\[]*$")
|
||||
nick_re = re.compile(r"^[A-Za-z0-9_|\.\-\]\[]*$")
|
||||
|
||||
# define lists for messages
|
||||
larts = []
|
||||
|
|
Reference in a new issue