battleman.py: Updated help function to reflect future features

This commit is contained in:
Anna Rose 2012-03-25 14:45:18 -04:00
parent a2151557b1
commit 331da9c0b7

View File

@ -603,6 +603,8 @@ def do_prompt():
do_wait(data) do_wait(data)
elif comm == 'W': elif comm == 'W':
do_unwait(data) do_unwait(data)
elif comm == 'x':
do_stub()
elif comm == 'q': elif comm == 'q':
sys.exit(0) sys.exit(0)
@ -625,6 +627,7 @@ c/C - apply / remove a condition
r - use a rechargable power r - use a rechargable power
n - next (end the current combat group's turn) n - next (end the current combat group's turn)
w/W - wait / unwait (remove a combatant from the initiative order and into a separate pool, then put them back) [stub] w/W - wait / unwait (remove a combatant from the initiative order and into a separate pool, then put them back) [stub]
x - force save the progress to the current battle cache (for use with --resume) [stub]
q - quit""") q - quit""")