Browse Source

!votes from non-players are now allowed, !rehash added (but it's not very useful)

master
jcao219 13 years ago
parent
commit
522a0a44c3
  1. 14
      wolfgame.py

14
wolfgame.py

@ -21,6 +21,7 @@ import re @@ -21,6 +21,7 @@ import re
import logging
import sys
import os
import imp
COMMANDS = {}
PM_COMMANDS = {}
@ -205,6 +206,16 @@ def restart_program(cli, nick, chan, rest): @@ -205,6 +206,16 @@ def restart_program(cli, nick, chan, rest):
print("RESTARTING")
python = sys.executable
os.execl(python, python, *sys.argv)
@cmd("rehash", admin_only=True)
def rehash(cli, nick, chan, rest):
reset(cli)
imp.reload(var)
imp.reload(botconfig)
cli.msg(chan, "Configuration reloaded")
@ -535,9 +546,6 @@ def show_votes(cli, nick, chan, rest): @@ -535,9 +546,6 @@ def show_votes(cli, nick, chan, rest):
if var.PHASE in ("none", "join"):
cli.notice(nick, "No game is currently running.")
return
elif nick not in var.list_players():
cli.notice(nick, "You're not currently playing.")
return
if var.PHASE != "day":
cli.notice(nick, "Voting is only during the day.")
return

Loading…
Cancel
Save