- increase car wheel landing vibration sensitivity

This commit is contained in:
Ilya Shurumov 2021-03-25 03:00:53 +06:00
parent 46c8c7fccf
commit a235dffd3a

View File

@ -337,9 +337,11 @@ void AddWheelForcesDriver1(CAR_DATA* cp, CAR_LOCALS* cl)
}
}
if (newCompression >= 85)
if (newCompression >= 65)
SetPadVibration(*cp->ai.padid, 1);
else if (newCompression >= 35)
SetPadVibration(*cp->ai.padid, 2);
else if (newCompression > 48)
else if (newCompression > 25)
SetPadVibration(*cp->ai.padid, 3);
}