Skip to content

Commit 59468b0

Browse files
authored
Fix Attach Flag module not supporting all flag pole types (#786)
1 parent fac8ad1 commit 59468b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addons/modules/functions/fnc_moduleAttachFlag.sqf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if !(alive _object) exitWith {
2828
[LSTRING(OnlyAlive)] call EFUNC(common,showMessage);
2929
};
3030

31-
if !(_object isKindOf "AllVehicles" || {_object isKindOf "FlagCarrier"}) exitWith {
31+
if !(_object isKindOf "AllVehicles" || {_object isKindOf "FlagCarrierCore"}) exitWith {
3232
[LSTRING(OnlyVehiclesOrFlags)] call EFUNC(common,showMessage);
3333
};
3434

0 commit comments

Comments
 (0)