Minor changes.

- Small changes in fstasis()
- Combined decorators for join()
- Added a space in decorator for vote()
- Added comma in decorator for freload()
This commit is contained in:
Yizhe Shen 2014-04-30 11:43:19 -04:00
parent 959ef98f51
commit bd303f5b48

View File

@ -391,8 +391,7 @@ def fpinger(cli, nick, chan, rest):
pinger(cli, nick, chan, rest)
@cmd("j", raw_nick=True)
@cmd("join", raw_nick=True)
@cmd("join", "j", raw_nick=True)
def join(cli, nick, chann_, rest):
"""Either starts a new game of Werewolf or joins an existing game that has not started yet."""
pl = var.list_players()
@ -1558,7 +1557,7 @@ def chk_nightdone(cli):
@cmd("lynch", "vote","v")
@cmd("lynch", "vote", "v")
def vote(cli, nick, chann_, rest):
"""Use this to vote for a candidate to be lynched"""
chan = botconfig.CHANNEL
@ -2581,18 +2580,20 @@ def on_error(cli, pfx, msg):
raise SystemExit
@pmcmd("fstasis", admin_only=True)
def fstasis(cli, nick, *rest):
data = rest[0].split()
def fstasis(cli, nick, rest):
"""Admin command for removing or setting stasis penalties."""
data = rest.split()
if data:
lusers = {k.lower(): v for k, v in var.USERS.items()}
user = data[0].lower()
if user in lusers:
cloak = lusers[user]['cloak']
else:
cloak = None
cli.msg(nick, "Sorry, that user cannot be found.")
if user not in lusers:
cli.msg(nick, "Sorry, {0} cannot be found.".format(data[0]))
return
cloak = lusers[user]['cloak']
if len(data) == 1:
if cloak in var.STASISED:
@ -3118,7 +3119,7 @@ def fsend(cli, nick, rest):
print('fsend ({0}): {1}'.format(nick, rest))
cli.send(rest)
@cmd("freload" "frehash", admin_only=True)
@cmd("freload", "frehash", admin_only=True)
def freload(cli, nick, chan, rest):
try:
# No, this doesn't clear the stasis list.