From ddc73285302cc5dd706f16ac903f3ec2baa550a3 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 21 Feb 2023 11:59:24 +0100 Subject: Fix double pass and next buttons during battle events. There should be "pass" only. --- rules.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/rules.js b/rules.js index a95a468..d6d01b9 100644 --- a/rules.js +++ b/rules.js @@ -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() -- cgit v1.2.3