Merge pull request #845 from Ignatz-HeMan/patch-8

Fixe for exploding new spaned Vehicles
This commit is contained in:
vbawol 2017-09-03 10:03:26 -05:00 committed by GitHub
commit b90026d1ab

View File

@ -29,7 +29,7 @@ if !(isNull _vehObj) then{
// add random damage to vehicle (avoid setting engine or fuel to 100% damage to prevent instant destruction)
if (_spawnDamaged) then {
{
_maxDamage = if (_x in ["HitEngine","HitFuel"]) then {0.9} else {1};
_maxDamage = if (_x in ["HitEngine","HitFuel","HitHull"]) then {0.9} else {1};
_vehObj setHitIndex [_forEachIndex,((random 1 max 0.1) min _maxDamage)];
} forEach ((getAllHitPointsDamage _vehObj) param [0,[]]);
};