Browse Source

updated README

master
jcao219 13 years ago
parent
commit
b1e863122c
  1. 2
      README
  2. 2
      wolfgame.py

2
README

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
Use Python 3
Use Python 3.2 (3.1 doesn't work)
configure botconfig.py
configure var.py to modify game settings
run wolfbot.py

2
wolfgame.py

@ -1969,7 +1969,7 @@ if botconfig.DEBUG_MODE: @@ -1969,7 +1969,7 @@ if botconfig.DEBUG_MODE:
@cmd("set", admin_only=True)
def set(cli, nick, chan, rest):
rest = re(" +",rest, 1)
rest = re.split(" +",rest, 1)
if len(rest) != 2 or not rest[0] or not rest[1]:
cli.msg(chan, "Invalid syntax.")
return

Loading…
Cancel
Save