From 89752a9f5c3876e81ecbd7314f9740644a8ba56b Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 17 Mar 2023 13:20:15 +0100 Subject: Avoid action name collision with debugging command "restore". --- tools/patchgame.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tools') diff --git a/tools/patchgame.js b/tools/patchgame.js index d0a27f0..42b6c57 100644 --- a/tools/patchgame.js +++ b/tools/patchgame.js @@ -47,10 +47,7 @@ try { game = rules.setup(args[0], args[1], args[2]) else if (item.action === 'resign') game = rules.resign(game, item.role) - else if (item.action === 'restore') { - game = JSON.parse(args) - console.log("RESTORE", i, game.state, game.active) - } else { + else { console.log("ACTION", i, game.state, game.active, ">", item.role, item.action, item.arguments) if (VERIFY) { if (!is_valid_action(rules, game, item.role, item.action, args)) { -- cgit v1.2.3