Skip to content

Commit

Permalink
Small Modify and Fix
Browse files Browse the repository at this point in the history
# Fix filename error.
 - "custom east.sqf" -> "custom_east.sqf"

# Remove build preset workshopid tag.

# Modify .gitignore

# Update stringtable.xml
 - Including this translation.
 - New Secondary Objective 'Humanitarian Aid'
 - KillahPotatoes#894

# bugfix infantry battlegroups
 - KillahPotatoes#846
  • Loading branch information
peckcat committed Feb 1, 2023
1 parent 0e7293f commit 359e6f4
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 48 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ if !(_spawn_marker isEqualTo "") then {
};
[selectRandom _infClasses, markerPos _spawn_marker, _grp] call KPLIB_fnc_createManagedUnit;
};
[_grp] spawn battlegroup_ai;
// [_grp] spawn battlegroup_ai;
_bg_groups pushBack _grp;
{
[_x] spawn battlegroup_ai;
} forEach _bg_groups;
_bg_groups pushBack _grp;
} else {
private _vehicle_pool = [opfor_battlegroup_vehicles, opfor_battlegroup_vehicles_low_intensity] select (combat_readiness < 50);
Expand Down
Loading

0 comments on commit 359e6f4

Please sign in to comment.