diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-01-04 14:42:54 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-01-31 12:39:03 +0100 |
commit | e94eac9df7688b8742eac0ccd13bad897013bfbc (patch) | |
tree | 335477d0931173db66f2c97601023939183e9b93 /public | |
parent | ddc4a5678adb3b0c9baddbed8e265d4b26c8e474 (diff) | |
download | server-e94eac9df7688b8742eac0ccd13bad897013bfbc.tar.gz |
Allow debugging "restored" games.
Diffstat (limited to 'public')
-rw-r--r-- | public/common/play.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/common/play.js b/public/common/play.js index 9e330c0..2059678 100644 --- a/public/common/play.js +++ b/public/common/play.js @@ -776,6 +776,9 @@ async function init_replay(debug) { function eval_action(item) { switch (item.action) { + case "restore": + s = JSON.parse(item.arguments) + break case "setup": s = rules.setup(item.arguments[0], item.arguments[1], item.arguments[2]) break |