mirror of
https://github.com/Ghostrider-DbD-/GMS_RC.git
synced 2024-08-30 16:02:11 +00:00
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:
parent
df7a483b3f
commit
580803734d
@ -60,17 +60,17 @@ while {true} do
|
|||||||
};
|
};
|
||||||
if (diag_tickTime > _timer5min) then
|
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,
|
diag_tickTime,
|
||||||
_clientID,
|
|
||||||
GMS_missionsRunning,
|
GMS_missionsRunning,
|
||||||
count GMS_monitoredVehicles,
|
count GMS_monitoredVehicles,
|
||||||
count GMS_monitoredMissionAIGroups,
|
count GMS_monitoredMissionAIGroups,
|
||||||
GMS_missionsRun,
|
GMS_missionsRun,
|
||||||
diag_FPS,
|
diag_FPS,
|
||||||
floor(diag_tickTime/60)
|
floor(diag_tickTime/60),
|
||||||
|
_clientID
|
||||||
]
|
]
|
||||||
] call GMS_fnc_log;
|
] call GMS_fnc_log;
|
||||||
if (GMS_debugLevel > 0) then
|
if (GMS_debugLevel > 0) then
|
||||||
|
@ -203,7 +203,12 @@ if (GMS_maxCrashSites > 0) then
|
|||||||
[] spawn GMS_fnc_mainThread;
|
[] spawn GMS_fnc_mainThread;
|
||||||
private _version = getText(configFile >> "GMSBuild" >> "Version");
|
private _version = getText(configFile >> "GMSBuild" >> "Version");
|
||||||
private _build = getText(configFile >> "GMSBuild" >> "Build");
|
private _build = getText(configFile >> "GMSBuild" >> "Build");
|
||||||
private _date = getText(configFile >> "GMSBuile" >> "Date");
|
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;
|
[format["Version %1 Build %2 Date %4 Loaded in %3 seconds",
|
||||||
|
_version,
|
||||||
|
_build,
|
||||||
|
diag_tickTime - _loadingStartTime,
|
||||||
|
_date]
|
||||||
|
] call GMS_fnc_log;
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,9 +12,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
class GMSBuild {
|
class GMSBuild {
|
||||||
Version = "7.142";
|
Version = "7.143";
|
||||||
Build = "259";
|
Build = "260";
|
||||||
Date = "01-24-2023";
|
Date = "04-20-2023";
|
||||||
};
|
};
|
||||||
|
|
||||||
class CfgPatches {
|
class CfgPatches {
|
||||||
|
Loading…
Reference in New Issue
Block a user