Procházet zdrojové kódy

added "-bepath"-parameter

This is needed for @Epoch.
It does not crash my @Exile server when left empty (@Exile does not need this to be specified, I think it uses the standard path)
Phil před 10 roky
rodič
revize
c9e56d4ee8
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2 1
      Arma3/arma3server

+ 2 - 1
Arma3/arma3server

@@ -28,7 +28,7 @@ ip="0.0.0.0"
 updateonstart="off"
 
 fn_parms(){
-parms="-netlog -ip=${ip} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -autoinit -loadmissiontomemory"
+parms="-netlog -ip=${ip} -cfg=${networkcfgfullpath} -config=${servercfgfullpath} -mod=${mods} -servermod=${servermods} -bepath=${bepath} -autoinit -loadmissiontomemory"
 }
 
 # ARMA 3 Modules
@@ -39,6 +39,7 @@ parms="-netlog -ip=${ip} -cfg=${networkcfgfullpath} -config=${servercfgfullpath}
 # and chmod modules directories to 775
 mods=""
 servermods=""
+bepath=""
 
 #### Advanced Variables ####