diff options
Diffstat (limited to 'tools/editgame.sh')
-rw-r--r-- | tools/editgame.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editgame.sh b/tools/editgame.sh index 7f21fcb..2638f45 100644 --- a/tools/editgame.sh +++ b/tools/editgame.sh @@ -1,7 +1,7 @@ #!/bin/bash if [ -n "$1" -a -n "$VISUAL" ] then - sqlite3 db "update games set state=edit(state) where game_id = $1" + sqlite3 db "update game_state set state=edit(state) where game_id = $1" else echo "usage: bash tools/editgame.sh GAME" echo "note: \$VISUAL must be set to your preferred editor" |