summaryrefslogtreecommitdiff
path: root/tools/undo.sh
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-07-03 16:45:43 +0200
committerTor Andersson <tor@ccxvii.net>2023-07-10 13:10:34 +0200
commitf6397dca9091cba8057f62815a9eabacf02ad098 (patch)
treeedb346246cb3fb0042372c8245d7aa046683869d /tools/undo.sh
parent43a8cbae409aa0cfd777cbbabbc4280fe191ce1c (diff)
downloadserver-f6397dca9091cba8057f62815a9eabacf02ad098.tar.gz
Don't delete undo by default when patching games.
Diffstat (limited to 'tools/undo.sh')
-rw-r--r--tools/undo.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/undo.sh b/tools/undo.sh
index 716e88b..889d6b8 100644
--- a/tools/undo.sh
+++ b/tools/undo.sh
@@ -1,10 +1,10 @@
#!/bin/bash
if [ -n "$1" ]
then
- COUNT=$(sqlite3 db "select count(1) from game_replay where game_id=$1")
+ COUNT=$(sqlite3 db "select coalesce(max(replay_id),0) from game_replay where game_id=$1")
echo Game has $COUNT actions.
sqlite3 db "delete from game_replay where game_id=$1 and replay_id=$COUNT"
- node tools/patchgame.js $1
+ node tools/patchgame.js $1 '{"validate_actions":false}'
else
echo "usage: bash tools/undo.sh GAME"
fi