Skip to content

Commit 9f939f3

Browse files
authored
Update Missionframework/scripts/server/battlegroup/spawn_battlegroup.sqf
1 parent 0ad5bcb commit 9f939f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Missionframework/scripts/server/battlegroup/spawn_battlegroup.sqf

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ if !(_spawn_marker isEqualTo "") then {
3333
for "_i" from 1 to _squadNumber do {
3434
// Create infantry groups with up to 8 units per squad
3535
private _grp = createGroup [KPLIB_side_enemy, true];
36-
for "_i" from 0 to 7 do {
37-
[selectRandom _infClasses, markerPos _spawn_marker, _grp] call KPLIB_fnc_createManagedUnit;
38-
};
36+
for "_i" from 0 to 7 do {
37+
[selectRandom _infClasses, markerPos _spawn_marker, _grp] call KPLIB_fnc_createManagedUnit;
38+
};
3939
[_grp] call KPLIB_fnc_LAMBS_enableReinforcements;
4040
[_grp] call battlegroup_ai;
4141
_grp setVariable ["KPLIB_isBattleGroup",true];

0 commit comments

Comments
 (0)