Merge branch 'master' into V-6.88-Build-160

This commit is contained in:
Ghostrider [GRG] 2018-12-01 13:06:48 -05:00 committed by GitHub
commit f2caf6e237
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 13 deletions

View File

@ -16,16 +16,5 @@
*/
#include "\q\addons\custom_server\Configs\blck_defines.hpp";
#ifdef blck_debugMode
diag_log format["_fnc_missionGroupMonitor (4/29:4:09 PM)::-->> running function at diag_tickTime = %1 with blck_fnc_missionGroupMonitor = %2",diag_tickTime,blck_monitoredMissionAIGroups];
#endif
#ifdef blck_debugMode
if (blck_debugLevel > 2) then {diag_log format["_fnc_missionGroupMonitor: executing function at %1",diag_tickTime];};
#endif
//[] call blck_fnc_cleanEmptyGroups;
uiSleep 0.1;
//[] call bck_fnc_groupWaypointMonitor;
//if (blck_simulationManager == blck_useBlckeaglsSimulationManagement) then {call blck_fnc_blckSimulationManager};

View File

@ -115,7 +115,8 @@ if (blck_debugLevel > 1) then
};
#endif
_wep setVariable["GRG_vehType","emplaced"];
_wep setVariable["GRG_vehType","emplaced"];
_wep setdir (random 359);
_wep setPos _pos;
_wep setdir (random 359);
[_wep,false] call blck_fnc_configureMissionVehicle;

View File

@ -37,6 +37,7 @@ for "_i" from 1 to _statics do
_allBldPsn = _allBldPsn - [_pos];
_staticClassName = selectRandom _typesStatics;
_obj = [_staticClassName, [0,0,0], true] call blck_fnc_spawnVehicle;
_obj setdir (random 359);
_obj setVariable["GRG_vehType","emplaced"];
_staticsSpawned pushBack _obj;
//diag_log format["_fnc_spawnGarrisonInsideBuilding_relPos: _obj = %1 | _staticsSpawned = %2",_obj,_staticsSpawned];

View File

@ -12,7 +12,6 @@
http://creativecommons.org/licenses/by-nc-sa/4.0/
*/
#include "\q\addons\custom_server\Configs\blck_defines.hpp";
for "_i" from 1 to (count blck_liveMissionAI) do {
if ((_i) <= count blck_liveMissionAI) then {
_units = blck_liveMissionAI deleteat 0;