added message when you try to vote on yourself @blha303

This commit is contained in:
Luke Rogers 2013-09-11 10:58:33 +12:00
parent a714354d69
commit 45ac28b6a6

View file

@ -76,6 +76,7 @@ def karma_add(match, nick='', chan='', db=None, notice=None):
nick_vote = match.group(1).strip().replace("+", "")
if nick.lower() == nick_vote.lower():
notice("You can't vote on yourself!")
return
if len(nick_vote) < 3:
return # ignore anything below 3 chars in length
@ -110,7 +111,7 @@ def karma_add(match, nick='', chan='', db=None, notice=None):
@hook.command('k')
@hook.command
def karma(inp, nick='', chan='', db=None):
""".k/.karma <nick> -- returns karma stats for <nick>"""
"""k/karma <nick> -- returns karma stats for <nick>"""
if not db_ready:
db_init(db)