Fix speed typo in damage handler and vehicle getOut

Vanilla commit:

1f6dd9f787
This commit is contained in:
ebaydayz
2016-08-21 12:06:12 -04:00
parent 92fbfdfdae
commit 289b1307ff
2 changed files with 2 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ if (_unit == player) then {
//Lets make sure we can process some dmg from ejecting from the vehicle even traveling at lower speeds.
if (((speed _vehicle) > 15) or ((speed _vehicle) < 10)) then {
if (((speed _vehicle) > 15) or ((speed _vehicle) < -10)) then {
dayz_getout = _vehicle;
dayz_getoutTime = diag_tickTime;
};