From 1c2d8fa4b29e91a70984f9313610166d6ec9f486 Mon Sep 17 00:00:00 2001 From: aikidoka Date: Fri, 20 Mar 2015 18:42:42 -0600 Subject: [PATCH] ARMA 3 changes for configs added server config directory creation added network config copy code --- functions/fn_install_config | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/functions/fn_install_config b/functions/fn_install_config index f768fda75..9a95478d5 100644 --- a/functions/fn_install_config +++ b/functions/fn_install_config @@ -2,10 +2,12 @@ # LGSM fn_server function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 210115 +# Version: 200315 fn_arma3config(){ +touch "${servercfgdir}" cp -v lgsm-default.cfg "${servercfgfullpath}" +cp -v lgsm-default.network.cfg "${networkcfgfullpath}" sleep 1 echo "" } @@ -243,4 +245,4 @@ elif [ "${gamename}" == "Unreal Tournament 2004" ]; then fn_unreal2config elif [ "${gamename}" == "Unreal Tournament 99" ]; then fn_ut99config -fi \ No newline at end of file +fi