From a3f6224d952605383eba93604cb820fccecb7d8a Mon Sep 17 00:00:00 2001 From: SoScared Date: Sat, 29 Sep 2018 16:45:58 +0200 Subject: [PATCH] alter launchers --- launch-dedicated.cmd | 4 ++-- launch-dedicated.sh | 4 ++-- launch-game.cmd | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/launch-dedicated.cmd b/launch-dedicated.cmd index ac75753..4279d1a 100644 --- a/launch-dedicated.cmd +++ b/launch-dedicated.cmd @@ -2,10 +2,10 @@ @echo on -set Name="Dedicated Server" +set Name="Big Kahuna Server" set ListenPort=1234 set AdvertiseOnline=True -set EnableSingleplayer=False +set EnableSingleplayer=True set Password="" @echo off diff --git a/launch-dedicated.sh b/launch-dedicated.sh index 2751541..439ff7c 100755 --- a/launch-dedicated.sh +++ b/launch-dedicated.sh @@ -34,11 +34,11 @@ fi require_variables "MOD_ID" "ENGINE_VERSION" "ENGINE_DIRECTORY" -NAME="${Name:-"Dedicated Server"}" +NAME="${Name:-"Big Kahuna Server"}" LAUNCH_MOD="${Mod:-"${MOD_ID}"}" LISTEN_PORT="${ListenPort:-"1234"}" ADVERTISE_ONLINE="${AdvertiseOnline:-"True"}" -ENABLE_SINGLE_PLAYER="${EnableSingleplayer:-"False"}" +ENABLE_SINGLE_PLAYER="${EnableSingleplayer:-"True"}" PASSWORD="${Password:-""}" cd "${TEMPLATE_ROOT}" diff --git a/launch-game.cmd b/launch-game.cmd index 2c98fda..545dcad 100644 --- a/launch-game.cmd +++ b/launch-game.cmd @@ -1,6 +1,6 @@ @echo off setlocal EnableDelayedExpansion -title OpenRA +title Red Alert: Unplugged FOR /F "tokens=1,2 delims==" %%A IN (mod.config) DO (set %%A=%%B) if exist user.config (FOR /F "tokens=1,2 delims==" %%A IN (user.config) DO (set %%A=%%B))