diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-05-05 23:21:26 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2020-05-05 23:21:26 +0200 |
commit | 35bf340401354f0c9af9efe88ae425bfd9e1b145 (patch) | |
tree | 627ac266b96acbabda3dc2e9b5cf95801ca7b199 /src/vehicles | |
parent | Merge remote-tracking branch 'upstream/miami' into miami (diff) | |
download | re3-35bf340401354f0c9af9efe88ae425bfd9e1b145.tar re3-35bf340401354f0c9af9efe88ae425bfd9e1b145.tar.gz re3-35bf340401354f0c9af9efe88ae425bfd9e1b145.tar.bz2 re3-35bf340401354f0c9af9efe88ae425bfd9e1b145.tar.lz re3-35bf340401354f0c9af9efe88ae425bfd9e1b145.tar.xz re3-35bf340401354f0c9af9efe88ae425bfd9e1b145.tar.zst re3-35bf340401354f0c9af9efe88ae425bfd9e1b145.zip |
Diffstat (limited to '')
-rw-r--r-- | src/vehicles/Automobile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicles/Automobile.cpp b/src/vehicles/Automobile.cpp index 8b267c09..4f0029ef 100644 --- a/src/vehicles/Automobile.cpp +++ b/src/vehicles/Automobile.cpp @@ -2190,7 +2190,7 @@ CAutomobile::ProcessEntityCollision(CEntity *ent, CColPoint *colpoints) } // move body cast - if(phys->bIsStatic){ + if(phys->IsStatic()){ phys->bIsStatic = false; phys->m_nStaticFrames = 0; phys->ApplyMoveForce(m_vecMoveSpeed / Sqrt(speed)); |