rebalance
This commit is contained in:
parent
a58888c314
commit
558a1eda07
@ -11,12 +11,11 @@ public partial class VeloXCar
|
||||
|
||||
private void UpdateABS()
|
||||
{
|
||||
ABSActive = false;
|
||||
if ( !UseABS )
|
||||
return;
|
||||
|
||||
ABSActive = false;
|
||||
|
||||
if ( TotalSpeed < 100 || ABSActive )
|
||||
if ( TotalSpeed < 100 || ABSActive || Steering.AlmostEqual( 0, 1 ) )
|
||||
return;
|
||||
|
||||
|
||||
|
||||
@ -12,9 +12,10 @@ public partial class VeloXCar
|
||||
public static bool UseESC = true;
|
||||
private void UpdateESC()
|
||||
{
|
||||
ESCActive = false;
|
||||
|
||||
if ( !UseESC )
|
||||
return;
|
||||
ESCActive = false;
|
||||
|
||||
if ( TotalSpeed < 100 || CarDirection != 1 )
|
||||
return;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user