Skip to content

Commit

Permalink
Add missing semi colons
Browse files Browse the repository at this point in the history
  • Loading branch information
theace0296 committed Sep 24, 2021
1 parent d1b50cd commit 9877149
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions RandFramework/Server/mission/fn_populateSideMission.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ if (!_bFriendlyInsurgents) then {
private _thisAllowBarakade = _selectRandomW;
private _thisIsDirectionAwayFromAO = true;
[_sidePos,_thisPosAreaOfCheckpoint,_thisAreaRange,_thisRoadOnly,_thisSide,_thisUnitTypes,_thisAllowBarakade,_thisIsDirectionAwayFromAO,false,(call UnarmedScoutVehicles),50] spawn TRGM_SERVER_fnc_setCheckpoint;
}
};
sleep 1;
};
};
Expand Down Expand Up @@ -461,7 +461,7 @@ if (!_bFriendlyInsurgents) then {
private _thisAllowBarakade = false;
private _thisIsDirectionAwayFromAO = true;
[_sidePos,_thisPosAreaOfCheckpoint,_thisAreaRange,_thisRoadOnly,_thisSide,_thisUnitTypes,_thisAllowBarakade,_thisIsDirectionAwayFromAO,false,(call UnarmedScoutVehicles),50] spawn TRGM_SERVER_fnc_setCheckpoint;
}
};
sleep 1;
};

Expand All @@ -483,7 +483,7 @@ if (!_bFriendlyInsurgents) then {
private _thisAllowBarakade = true;
private _thisIsDirectionAwayFromAO = true;
[_sidePos,_thisPosAreaOfCheckpoint,_thisAreaRange,_thisRoadOnly,_thisSide,_thisUnitTypes,_thisAllowBarakade,_thisIsDirectionAwayFromAO,true,(call UnarmedScoutVehicles),100] spawn TRGM_SERVER_fnc_setCheckpoint;
}
};
sleep 1;
};

Expand All @@ -505,7 +505,7 @@ if (!_bFriendlyInsurgents) then {
private _thisAllowBarakade = true;
private _thisIsDirectionAwayFromAO = true;
[_sidePos,_thisPosAreaOfCheckpoint,_thisAreaRange,_thisRoadOnly,_thisSide,_thisUnitTypes,_thisAllowBarakade,_thisIsDirectionAwayFromAO,true,(call UnarmedScoutVehicles),300] spawn TRGM_SERVER_fnc_setCheckpoint;
}
};
sleep 1;
};

Expand All @@ -527,7 +527,7 @@ if (!_bFriendlyInsurgents) then {
private _thisAllowBarakade = true;
private _thisIsDirectionAwayFromAO = true;
[_sidePos,_thisPosAreaOfCheckpoint,_thisAreaRange,_thisRoadOnly,_thisSide,_thisUnitTypes,_thisAllowBarakade,_thisIsDirectionAwayFromAO,true,(call UnarmedScoutVehicles),500] spawn TRGM_SERVER_fnc_setCheckpoint;
}
};
sleep 1;
};

Expand All @@ -549,7 +549,7 @@ if (!_bFriendlyInsurgents) then {
private _thisAllowBarakade = false;
private _thisIsDirectionAwayFromAO = true;
[_sidePos,_thisPosAreaOfCheckpoint,_thisAreaRange,_thisRoadOnly,_thisSide,_thisUnitTypes,_thisAllowBarakade,_thisIsDirectionAwayFromAO,false,(call UnarmedScoutVehicles),500] spawn TRGM_SERVER_fnc_setCheckpoint;
}
};
sleep 1;
};

Expand Down
2 changes: 1 addition & 1 deletion RandFramework/Server/objectives/fn_occupyHouses.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ if (!_bThisMissionCivsOnly) then {
private _thisAllowBarakade = false;
private _thisIsDirectionAwayFromAO = true;
[_sidePos,_thisPosAreaOfCheckpoint,_thisAreaRange,_thisRoadOnly,_thisSide,_thisUnitTypes,_thisAllowBarakade,_thisIsDirectionAwayFromAO,false,(call UnarmedScoutVehicles),50,false] spawn TRGM_SERVER_fnc_setCheckpoint;
}
};
sleep 1;
};
};
Expand Down

0 comments on commit 9877149

Please sign in to comment.