Bug Fixes

The following issues were fixed:
Warnings that some files to be compiles were missing.
Minor glitches with logging on startup and periodic updates
This commit is contained in:
Ghostrider [GRG] 2023-04-20 16:01:46 -04:00
parent df7a483b3f
commit 580803734d
3 changed files with 14 additions and 9 deletions

View File

@ -60,17 +60,17 @@ while {true} do
};
if (diag_tickTime > _timer5min) then
{
private _clientID = if (clientOwner == 2) then {"server"} else {"Headless Client"};
private _clientID = if (clientOwner == 2) then {"Dedicated Server"} else {"Headless Client"};
[
format["Timstamp %1 | Running on %2 | Missions Running %2 | Vehicles %3 | Groups %4 | Missions Run %5 | Server FPS %6 | Server Uptime %7 Min",
format["Timstamp %1 | Missions Running %2 | Vehicles %3 | Groups %4 | Missions Run %5 | Server FPS %6 | Server Uptime %7 Min | Running on %8",
diag_tickTime,
_clientID,
GMS_missionsRunning,
count GMS_monitoredVehicles,
count GMS_monitoredMissionAIGroups,
GMS_missionsRun,
diag_FPS,
floor(diag_tickTime/60)
floor(diag_tickTime/60),
_clientID
]
] call GMS_fnc_log;
if (GMS_debugLevel > 0) then

View File

@ -203,7 +203,12 @@ if (GMS_maxCrashSites > 0) then
[] spawn GMS_fnc_mainThread;
private _version = getText(configFile >> "GMSBuild" >> "Version");
private _build = getText(configFile >> "GMSBuild" >> "Build");
private _date = getText(configFile >> "GMSBuile" >> "Date");
[format["Version %1 Build %2 Date %4 Loaded in %3 seconds",_version,_build,diag_tickTime - _loadingStartTime,_date]] call GMS_fnc_log;
private _date = getText(configFile >> "GMSBuild" >> "Date");
[format["Version %1 Build %2 Date %4 Loaded in %3 seconds",
_version,
_build,
diag_tickTime - _loadingStartTime,
_date]
] call GMS_fnc_log;

View File

@ -12,9 +12,9 @@
*/
class GMSBuild {
Version = "7.142";
Build = "259";
Date = "01-24-2023";
Version = "7.143";
Build = "260";
Date = "04-20-2023";
};
class CfgPatches {