Skip to content

Commit

Permalink
removed unneeded var declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
SnarkIndustries committed Aug 4, 2014
1 parent 9a28856 commit e94781d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions DZAI/scripts/setup_veh_patrols.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ waitUntil {uiSleep 0.1; !isNil "DZAI_locations_ready"};

if (DZAI_maxHeliPatrols > 0) then {
_nul = [] spawn {
DZAI_heliListFinal = [];

for "_i" from 0 to ((count DZAI_heliList) - 1) do {
_heliType = (DZAI_heliList select _i) select 0;
_amount = (DZAI_heliList select _i) select 1;
Expand Down Expand Up @@ -35,8 +33,6 @@ if (DZAI_maxHeliPatrols > 0) then {

if (DZAI_maxLandPatrols > 0) then {
_nul = [] spawn {
DZAI_vehListFinal = [];

for "_i" from 0 to ((count DZAI_vehList) - 1) do {
_vehType = (DZAI_vehList select _i) select 0;
_amount = (DZAI_vehList select _i) select 1;
Expand Down

0 comments on commit e94781d

Please sign in to comment.