diff options
author | erorcun <erayorcunus@gmail.com> | 2020-04-18 20:38:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-18 20:38:02 +0200 |
commit | 928ac4b0a5801043be6685955777b08f1a47518b (patch) | |
tree | 3db11d118bc9c1b0b04dd3c264e2242992e2d513 /src/vehicles | |
parent | Changed extraOffset value. (diff) | |
parent | submodule update (diff) | |
download | re3-928ac4b0a5801043be6685955777b08f1a47518b.tar re3-928ac4b0a5801043be6685955777b08f1a47518b.tar.gz re3-928ac4b0a5801043be6685955777b08f1a47518b.tar.bz2 re3-928ac4b0a5801043be6685955777b08f1a47518b.tar.lz re3-928ac4b0a5801043be6685955777b08f1a47518b.tar.xz re3-928ac4b0a5801043be6685955777b08f1a47518b.tar.zst re3-928ac4b0a5801043be6685955777b08f1a47518b.zip |
Diffstat (limited to 'src/vehicles')
-rw-r--r-- | src/vehicles/Vehicle.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vehicles/Vehicle.cpp b/src/vehicles/Vehicle.cpp index 48c836f8..bc47b486 100644 --- a/src/vehicles/Vehicle.cpp +++ b/src/vehicles/Vehicle.cpp @@ -787,6 +787,10 @@ CVehicle::CanPedExitCar(void) { CVector up = GetUp(); if(up.z > 0.1f || up.z < -0.1f){ +#ifdef VC_PED_PORTS + if (IsBoat()) + return true; +#endif // can't exit when car is moving too fast if(m_vecMoveSpeed.MagnitudeSqr() > 0.005f) return false; |