Merge pull request #722 from Ignatz-HeMan/patch-5

Set damage to value, not to 0
This commit is contained in:
vbawol 2017-04-02 10:31:42 -05:00 committed by GitHub
commit 17762afbdc

View File

@ -18,7 +18,7 @@ if !([_player, _token] call EPOCH_server_getPToken) exitWith{};
if (_player distance _vehicle > 20) exitWith{};
if ((_value select 0) isEqualTo "ALL") then {
_vehicle setDamage 0;
_vehicle setDamage (_value select 1);
} else {
if (local _vehicle) then {
_vehicle setHitIndex _value;