From c8fcc8e64d06efdba2dce255d94737fa6786ad14 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Sun, 27 Aug 2023 23:01:50 +0200 Subject: check if we can actually resign in this game --- rtt-module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtt-module.js b/rtt-module.js index f0c2c6c..6ff8dfd 100755 --- a/rtt-module.js +++ b/rtt-module.js @@ -67,7 +67,7 @@ module.exports.fuzz = function(fuzzerInputData) { // remove `undo` from actions, useful to test for dead-ends delete actions['undo'] } - if (!NO_RESIGN) { + if (!NO_RESIGN && RULES.resign) { actions['_resign'] = 1 } -- cgit v1.2.3