Skip to content

Commit

Permalink
made sure to keep casing consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
FatRefrigerator committed Oct 4, 2024
1 parent 43c41c1 commit 446cd7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Missionframework/functions/fn_initSectors.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

KPLIB_sectors_airSpawn = [];
KPLIB_sectors_all = [];
KPLIB_sectors_boatspawn = [];
KPLIB_sectors_boatSpawn = [];
KPLIB_sectors_capital = [];
KPLIB_sectors_city = [];
KPLIB_sectors_factory = [];
Expand Down
2 changes: 1 addition & 1 deletion Missionframework/scripts/server/battlegroup/spawn_boat.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ private _boats_number = ((floor linearConversion [25, 100, KPLIB_enemyReadiness,
if (_boats_number < 1) exitWith {};

private _class = selectRandom KPLIB_o_boats;
private _spawnPoint = ([KPLIB_sectors_boatspawn, [_first_objective], {(markerPos _x) distance _input0}, "ASCEND"] call BIS_fnc_sortBy) select 0;
private _spawnPoint = ([KPLIB_sectors_boatSpawn, [_first_objective], {(markerPos _x) distance _input0}, "ASCEND"] call BIS_fnc_sortBy) select 0;
private _spawnPos = [];
private _boat = objNull;
private _boats = [];
Expand Down

0 comments on commit 446cd7c

Please sign in to comment.