diff options
author | aap <aap@papnet.eu> | 2019-09-14 08:41:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-14 08:41:09 +0200 |
commit | 06be2f772a5b11b54c58b8c35e515ab77caf8129 (patch) | |
tree | cacd806edb9ca44bda3a057a934b629cc7be1bc3 /src/entities/Physical.cpp | |
parent | fixed launch in space bug (diff) | |
parent | P.e.d.s. (diff) | |
download | re3-06be2f772a5b11b54c58b8c35e515ab77caf8129.tar re3-06be2f772a5b11b54c58b8c35e515ab77caf8129.tar.gz re3-06be2f772a5b11b54c58b8c35e515ab77caf8129.tar.bz2 re3-06be2f772a5b11b54c58b8c35e515ab77caf8129.tar.lz re3-06be2f772a5b11b54c58b8c35e515ab77caf8129.tar.xz re3-06be2f772a5b11b54c58b8c35e515ab77caf8129.tar.zst re3-06be2f772a5b11b54c58b8c35e515ab77caf8129.zip |
Diffstat (limited to 'src/entities/Physical.cpp')
-rw-r--r-- | src/entities/Physical.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/Physical.cpp b/src/entities/Physical.cpp index fbd1322d..fef5ec7f 100644 --- a/src/entities/Physical.cpp +++ b/src/entities/Physical.cpp @@ -1459,7 +1459,7 @@ CPhysical::ProcessCollisionSectorList(CPtrList *lists) A->m_phy_flagA80 = true; }else if(A->IsPed() && Aped->m_pCollidingEntity == B){ skipCollision = true; - if(!Aped->m_ped_flagH1) + if(!Aped->bKnockedUpIntoAir) A->m_phy_flagA80 = true; }else if(B->IsPed() && Bped->m_pCollidingEntity == A){ skipCollision = true; |