updated README
This commit is contained in:
parent
b62c1045bc
commit
e597e3bb7d
2
README
2
README
@ -1,4 +1,4 @@
|
|||||||
Use Python 3
|
Use Python 3.2 (3.1 doesn't work)
|
||||||
configure botconfig.py
|
configure botconfig.py
|
||||||
configure var.py to modify game settings
|
configure var.py to modify game settings
|
||||||
run wolfbot.py
|
run wolfbot.py
|
||||||
|
@ -1969,7 +1969,7 @@ if botconfig.DEBUG_MODE:
|
|||||||
|
|
||||||
@cmd("set", admin_only=True)
|
@cmd("set", admin_only=True)
|
||||||
def set(cli, nick, chan, rest):
|
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]:
|
if len(rest) != 2 or not rest[0] or not rest[1]:
|
||||||
cli.msg(chan, "Invalid syntax.")
|
cli.msg(chan, "Invalid syntax.")
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user