summaryrefslogtreecommitdiff
path: root/tools/patchgame.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/patchgame.js')
-rwxr-xr-xtools/patchgame.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/patchgame.js b/tools/patchgame.js
index 9751d26..6808704 100755
--- a/tools/patchgame.js
+++ b/tools/patchgame.js
@@ -86,7 +86,7 @@ function is_valid_action(rules, state, role, action, arg) {
return false
}
-function patch_game(game_id, {validate_actions=true, save_snaps=true, delete_undo=true, delete_invalid=false}, verbose) {
+function patch_game(game_id, {validate_actions=true, save_snaps=true, delete_undo=false, delete_invalid=false}, verbose) {
let game = select_game.get(game_id)
if (!game) {
console.error("game not found:", game_id)
@@ -203,7 +203,7 @@ if (process.argv.length < 3) {
process.stderr.write("usage: ./tools/patchgame.js <game_id> '{options}'\n")
process.stderr.write(" or: ./tools/patchgame.js <title_id> '{options}'\n")
process.stderr.write(" or: ./tools/patchgame.js all '{options}'\n")
- process.stderr.write('options: { "validate_actions":true, "delete_invalid":false, "save_snaps":true, "delete_undo":true }\n')
+ process.stderr.write('options: { "validate_actions":true, "delete_invalid":false, "save_snaps":true, "delete_undo":false }\n')
process.exit(1)
}