Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if not isNil"_dsp" then
_ctrlFeedback ctrlSetText "Selected vehicle check #1 complete.";
_ctrlFeedback ctrlSetText "Building check complete.";
_range = "range" call SC_fnc_vgsGetClientSetting;
_vehs = (position player) nearEntities [['Air','Car','MotorCycle','Tank'], _range];
_vehs = (position player) nearEntities [['Air','Car','MotorCycle','Tank','Ship'], _range];
if (_index < (count _vehs)) then
{
_ctrlFeedback ctrlSetText "Selected vehicle check #2 complete.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if not isNil"_dsp" then
_ctrlNoVehs = _dsp displayCtrl 1006;
_ctrlFeedBack = _dsp displayCtrl 1002;
_range = "range" call SC_fnc_vgsGetClientSetting;
_vehs = (position player) nearEntities [['Air','Car','MotorCycle','Tank'], _range];
_vehs = (position player) nearEntities [['Air','Car','MotorCycle','Tank','Ship'], _range];
if (count _vehs > 0) then
{
private ["_remVeh"];
Expand Down Expand Up @@ -92,11 +92,15 @@ if not isNil"_dsp" then
{
_add = true
};
case (_x isKindOf "Helicopter"):
case (_x isKindOf "Air"):
{
_add = true
};
case (_x isKindOf "MotorCycle"):
{
_add = true
};
case (_x isKindOf "Ship"):
{
_add = true
};
Expand Down
Loading