diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-02-21 11:59:24 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-21 12:02:07 +0100 |
commit | ddc73285302cc5dd706f16ac903f3ec2baa550a3 (patch) | |
tree | 5951b2c94939c854ffecc5794871e92389381038 | |
parent | 3337b26e7992526dcf4bb498b902630d09edc614 (diff) | |
download | wilderness-war-ddc73285302cc5dd706f16ac903f3ec2baa550a3.tar.gz |
Fix double pass and next buttons during battle events.
There should be "pass" only.
-rw-r--r-- | rules.js | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -4595,7 +4595,6 @@ states.attacker_events = { if (have.length === 0 && dont_have.length === 0) view.prompt += " You have no more response events." gen_action_pass() - gen_action_next() // XXX }, play_event(c) { push_undo() @@ -4668,7 +4667,6 @@ states.defender_events = { if (have.length === 0 && dont_have.length === 0) view.prompt += " You have no more response events." gen_action_pass() - gen_action_next() // XXX }, play_event(c) { push_undo() |