home · contact · privacy
Server, plugin: Refactor thingproliferation (plugin integration).
[plomrogue] / start_server_client_union.sh
index 74872c773f59651df3d5b893eb515b0864bca33f..f6c194fafcff9fd3b89f9fc9eed7d15c2495923d 100755 (executable)
@@ -21,8 +21,8 @@ fi
 # Give helpful message to players that want to start without compiling first.
 if [ ! -e ./libplomrogue.so ]
 then
-    echo 'No ./libplomrogue.so library found. Try "./build.sh" first?'
-    false
+    echo 'No ./libplomrogue.so library found. Building …'
+    ./build.sh
 fi
 
 # Use shell script's arguments for server and pipe server output to log file.
@@ -39,12 +39,12 @@ kill -0 $! 2> /dev/null
 
 # Give server some time (max. 10 seconds) to generate its worldstate file.
 i=0
-while [ ! -e server/worldstate ] && [ $i -le 1000 ]
+while [ ! -e server_run/worldstate ] && [ $i -le 1000 ]
 do
     sleep 0.01
     i=`expr $i + 1`
 done
-if [ ! -e server/worldstate ]
+if [ ! -e server_run/worldstate ]
 then
     echo "Server failed generating worldstate file within given time limit."
     false