summaryrefslogtreecommitdiff
path: root/tools/undo.sh
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-07-24 12:04:57 +0200
committerTor Andersson <tor@ccxvii.net>2023-08-10 22:34:33 +0200
commit1a90cb82b461568579e481f90b536e5cbd4fbf50 (patch)
treeea961cb16cee5cfc906db8920d9da9402745d047 /tools/undo.sh
parent359e2c62ca54cf41d70635a994ca748fcca50f14 (diff)
downloadserver-1a90cb82b461568579e481f90b536e5cbd4fbf50.tar.gz
Fix rematch button.
Diffstat (limited to 'tools/undo.sh')
-rw-r--r--tools/undo.sh11
1 files changed, 8 insertions, 3 deletions
diff --git a/tools/undo.sh b/tools/undo.sh
index 889d6b8..b75182f 100644
--- a/tools/undo.sh
+++ b/tools/undo.sh
@@ -1,9 +1,14 @@
#!/bin/bash
if [ -n "$1" ]
then
- 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"
+ if [ -n "$2" ]
+ then
+ COUNT=$2
+ else
+ COUNT=$(sqlite3 db "select coalesce(max(replay_id),0) from game_replay where game_id=$1")
+ echo Game has $COUNT actions.
+ fi
+ sqlite3 db "delete from game_replay where game_id=$1 and replay_id>=$COUNT"
node tools/patchgame.js $1 '{"validate_actions":false}'
else
echo "usage: bash tools/undo.sh GAME"