mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
fixed soldier units spawning long after spotted
if unit is forced to spawn no need to increase random spawn limit, Also since there was no way to decrease the spawn for soldiers they would randomly spawn forever. get random postion around player to spawn soldier if extra data is not sent. set soldiers to spawn at ground level.
This commit is contained in:
parent
01effa7119
commit
e6a4e39bb9
@ -123,7 +123,6 @@ switch _unitClass do {
|
||||
};
|
||||
case "I_UAV_01_F": {
|
||||
for "_i" from 0 to (_unitCount-1) do {
|
||||
_targetPos = getPosATL _trgt;
|
||||
_targetPos = [_targetPos, 600, 1200, 5, 0, 400, 0] call BIS_fnc_findSafePos;
|
||||
_targetPos set[2, 600];
|
||||
_unit = createVehicle["I_UAV_01_F", _targetPos, [], 0, "FLY"];
|
||||
@ -151,7 +150,6 @@ switch _unitClass do {
|
||||
};
|
||||
};
|
||||
case "I_Soldier_EPOCH": {
|
||||
_extraData params [["_pos",getpos player],["_copter",objnull]];
|
||||
_grp = createGroup RESISTANCE;
|
||||
_grp setBehaviour "COMBAT";
|
||||
_grp setCombatMode "RED";
|
||||
|
Loading…
x
Reference in New Issue
Block a user