parse "nick: ++" as "nick++"
This commit is contained in:
parent
21fa2120df
commit
30ead4dcb6
1 changed files with 3 additions and 1 deletions
|
@ -83,7 +83,9 @@ class Module(ModuleManager.BaseModule):
|
||||||
|
|
||||||
target = event["match"].group(2).strip().rstrip("".join(WORD_STOP))
|
target = event["match"].group(2).strip().rstrip("".join(WORD_STOP))
|
||||||
if event["match"].group(1):
|
if event["match"].group(1):
|
||||||
if not event["server"].has_user(event["match"].group(1)[:-1]):
|
if not target:
|
||||||
|
target = event["match"].group(1)
|
||||||
|
elif not event["server"].has_user(event["match"].group(1)[:-1]):
|
||||||
target = "%s %s" % (event["match"].group(1), target)
|
target = "%s %s" % (event["match"].group(1), target)
|
||||||
|
|
||||||
if target:
|
if target:
|
||||||
|
|
Loading…
Reference in a new issue