remove forced profilenamespace save

KK said on a blog post that profile namespace variables is done
automatically but you can force it by using saveProfileNamespace command
This commit is contained in:
[VB]AWOL
2014-02-24 10:15:14 -06:00
parent 2093fdbeaa
commit af0da36391

View File

@@ -11,13 +11,6 @@ diag_log "HIVE: Starting";
waituntil{isNil "sm_done"}; // prevent server_monitor be called twice (bug during login of the first player)
if (isNil "server_initCount") then {
server_initCount = 1;
} else {
server_initCount = server_initCount + 1;
};
diag_log format["server_monitor.sqf execution count = %1", server_initCount];
// Custom Configs
if(isnil "MaxVehicleLimit") then {
MaxVehicleLimit = 50;
@@ -68,7 +61,6 @@ if (isServer and isNil "sm_done") then {
// save superkey
profileNamespace setVariable ["SUPERKEY",(_hiveResponse select 2)];
saveProfileNamespace;
_hiveLoaded = true;