diff --git a/addons/main/GELDZEIT/fn_serverInit.sqf b/addons/main/GELDZEIT/fn_serverInit.sqf index 8c9e08c1..0fd3a355 100644 --- a/addons/main/GELDZEIT/fn_serverInit.sqf +++ b/addons/main/GELDZEIT/fn_serverInit.sqf @@ -26,6 +26,13 @@ #define LOGGING_VERSION 9 +// Missionsnamen-Rekonstruktor (Symlink opt_latest -> opt_v123) +GVAR(missionName) = missionName; +if (GVAR(missionName) isEqualTo "opt_latest") then +{ + GVAR(missionName) = "opt_v" + getMissionConfigValue "onLoadMission"; +}; + private _time = systemTime; ["Logging", "Start", [LOGGING_VERSION, OPT_GELDZEIT_Fraktionauswahl, format ["%1-%2-%3 %4:%5:%6", _time select 0, _time select 1, _time select 2, _time select 3, _time select 4, _time select 5]]] call OPT_LOGGING_fnc_writelog; ["Mission", "Load", [0, 0, 0, GVAR(missionName)]] call OPT_LOGGING_fnc_writelog; @@ -35,14 +42,6 @@ publicVariable QGVAR(GAMESTAGE); GVAR(playerList) = []; - -// Missionsnamen-Rekonstruktor (Symlink opt_latest -> opt_v123) -GVAR(missionName) = missionName; -if (GVAR(missionName) isEqualTo "opt_latest") then -{ - GVAR(missionName) = "opt_v" + getMissionConfigValue "onLoadMission"; -}; - ["missionStarted", { GVAR(startTime) = serverTime; diff --git a/addons/main/script_version.hpp b/addons/main/script_version.hpp index cab7cda0..7dbf5c7c 100755 --- a/addons/main/script_version.hpp +++ b/addons/main/script_version.hpp @@ -2,7 +2,7 @@ #define MAJOR 1 #define MINOR 9 #define PATCHLVL 2 -#define BUILD 57 +#define BUILD 58 #ifdef VERSION