From 7be92686153e4336cdb0071034b38e633592b3ab Mon Sep 17 00:00:00 2001 From: Steffen Mecke Date: Fri, 15 Sep 2023 18:44:55 +0200 Subject: [PATCH] set game.start to 0 just like turn --- s/setup | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/s/setup b/s/setup index 8fa1310b8..c71f4eba1 100755 --- a/s/setup +++ b/s/setup @@ -1,13 +1,6 @@ #!/bin/bash -ROOT=$(pwd) -while [ ! -d $ROOT/.git ]; do - ROOT=$(dirname $ROOT) - if [ "/" = "$ROOT" ]; then - echo "could not find root, are you in the git repository?" - exit - fi -done +ROOT=$(git rev-parse --show-toplevel) ERESSEA=$(dirname $ROOT) function abort() { @@ -99,7 +92,7 @@ ini_start ini_sec game ini_add game locales de,en ini_add game id $game -ini_add game start 1 +ini_add game start 0 ini_sec lua ini_add lua install $SOURCE ini_add lua rules $rules