diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-02 13:16:13 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-02 13:16:13 -0400 |
commit | d01adec15a2b90c33b5aecf62af858732910ff51 (patch) | |
tree | 096f0eb6c9c4cfd0785de240a2c948df618b865b /rules.js | |
parent | 495411a68520a8b73611cf5688c5afb50a4e5898 (diff) | |
download | vijayanagara-d01adec15a2b90c33b5aecf62af858732910ff51.tar.gz |
Fuzzing - summaries open
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -4551,8 +4551,10 @@ function vm_log_h2() { } function vm_pop_summary() { - upop_summary() - log_br() + if (game.summary) { + upop_summary() + log_br() + } vm_next() } @@ -4826,7 +4828,8 @@ function end_vm_move_to(s) { if (game.summary && game.summary.length > 0) { log_space(vm_operand(1), "Move") pop_summary() - } + } else if (game.summary) + game.summary = null vm_next() } |