Make bare !vote allow one to see votes even if not playing

This commit is contained in:
Vgr E.Barry 2015-03-15 19:46:47 -04:00
parent dda9348fb2
commit 6d70f04b53

View File

@ -7030,9 +7030,10 @@ def vote(cli, raw_nick, chan, rest):
if var.PHASE == "join" and chan != nick:
return game(cli, raw_nick, chan, rest)
else:
elif rest:
return lynch(cli, nick, chan, rest)
else:
return show_votes(cli, nick, chan, rest)
@cmd("fpull", admin_only=True, pm=True)
def fpull(cli, nick, chan, rest):