From df7fe3d813fd6bf3f53dcb8a0358339c8dfbae3e Mon Sep 17 00:00:00 2001 From: He-Man Date: Sat, 8 Apr 2017 20:22:36 +0200 Subject: [PATCH] Enabled Simulation for Vehicles --- sem/scripts/fn_createComposition.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sem/scripts/fn_createComposition.sqf b/sem/scripts/fn_createComposition.sqf index 6c00e3d..6072a77 100644 --- a/sem/scripts/fn_createComposition.sqf +++ b/sem/scripts/fn_createComposition.sqf @@ -66,7 +66,7 @@ for "_i" from 0 to ((count _objs) - 1) do }; _newObj allowdamage false; if !(_type in ["Box_NATO_AmmoVeh_F","Land_MetalCase_01_large_F"]) then { - if !(_newObj iskindof "house") then { + if !(_newObj iskindof "house" || _newObj iskindof "Landvehicle" || _newObj iskindof "SHIP" || _newObj iskindof "AIR" || _newObj iskindof "TANK" || _newObj iskindof "StaticWeapon") then { _newObj enablesimulationglobal false; }; };