Don't merge the array (Not sure if this is correctly)

This commit is contained in:
Skaronator
2013-12-29 23:20:21 +01:00
parent 01c579799f
commit 8707ff7c97

View File

@@ -70,7 +70,6 @@ if (isServer and isNil "sm_done") then {
};
diag_log ("HIVE: got " + str(count(_BuildingQueue)) + " Epoch Objects and " + str(count(_objectQueue)) + " Vehicles");
_finalEpochObjArray = _BuildingQueue + _objectQueue;
// # NOW SPAWN OBJECTS #
_totalvehicles = 0;
{
@@ -248,8 +247,7 @@ if (isServer and isNil "sm_done") then {
//Monitor the object
PVDZE_serverObjectMonitor set [count PVDZE_serverObjectMonitor,_object];
};
} forEach _finalEpochObjArray;
} forEach (_BuildingQueue + _objectQueue);
// # END SPAWN OBJECTS #