Fix reversed comments for RunOver/Dragged

Vanilla commit:

https://github.com/DayZMod/DayZ/commit/ef3600bd32d239531ed6a791cf9f5d3a0336e199
This commit is contained in:
ebaydayz
2016-10-07 14:18:56 -04:00
parent b25b7636a7
commit 3604d77823
+2 -2
View File
@@ -249,9 +249,9 @@ if (_damage > 0.4) then {
case 2: {_scale = _scale + 150};
//Zombies
case 3: {_scale = getNumber (configFile >> "CfgVehicles" >> _sourceType >> "damageScale"); if (dayz_DamageMultiplier > 1) then {_scale = _scale * dayz_DamageMultiplier;};};
//Dragged
case 4: {_scale = _scale - 150};
//RunOver
case 4: {_scale = _scale - 150};
//Dragged
case 5: {_scale = 25};
};