reword karma to "<target> now has 3 karma (1 from <sender>)"
closes #226
This commit is contained in:
parent
8d5f0486e1
commit
82ba7a0922
1 changed files with 2 additions and 2 deletions
|
@ -68,8 +68,8 @@ class Module(ModuleManager.BaseModule):
|
|||
|
||||
karma_total = self._karma_str(self._get_karma(server, target))
|
||||
|
||||
return True, "%s has given %s %s karma (%s total)" % (
|
||||
sender.nickname, target, karma_str, karma_total)
|
||||
return True, "%s now has %s karma (%s from %s)" % (
|
||||
target, karma_total, karma_str, sender.nickname)
|
||||
|
||||
@utils.hook("command.regex", pattern=REGEX_WORD)
|
||||
@utils.hook("command.regex", pattern=REGEX_PARENS)
|
||||
|
|
Loading…
Reference in a new issue