merp merp merp

This commit is contained in:
xfnw 2021-05-22 18:55:16 -04:00
parent 32a5c4c1aa
commit a9a3d2ecf1
1 changed files with 3 additions and 3 deletions

View File

@ -81,8 +81,8 @@ async def filter(self, c, n, m):
if m[:len(shared.prefix)] == shared.prefix: if m[:len(shared.prefix)] == shared.prefix:
m = m[len(shared.prefix):] m = m[len(shared.prefix):]
await go(self, c, n, m) await go(self, c, n, m)
elif m[:4] == 'min ': elif m[:len(self.nickname)+1] == self.nickname+' ':
m = m[4:] m = m[len(self.nickname)+1:]
await go(self, c, n, m) await go(self, c, n, m)
elif '#' not in c and n != self.nickname: elif '#' not in c and n != self.nickname:
await go(self, c, n, m) await go(self, c, n, m)
@ -104,7 +104,7 @@ async def init(self):
shared.qtime = {} shared.qtime = {}
shared.learntime = 0 shared.learntime = 0
shared.learndelay = 4 shared.learndelay = 1
shared.enmul = 40 shared.enmul = 40
shared.rawm['nlp'] = filter shared.rawm['nlp'] = filter