stricter flip check

This commit is contained in:
Sardelka
2022-07-30 12:50:04 +08:00
parent 49f7f9e3e1
commit a0d5f9d2df

View File

@ -69,7 +69,7 @@ namespace RageCoop.Client
{ {
get get
{ {
return _isMotorcycle||(Quaternion*Vector3.RelativeTop).Z <(Quaternion*Vector3.RelativeBottom).Z; return _isMotorcycle||((Quaternion*Vector3.RelativeTop).Z - (Quaternion*Vector3.RelativeBottom).Z)<0.5;
} }
} }
private bool _isMotorcycle; private bool _isMotorcycle;