diff --git a/AUTHORS.md b/AUTHORS.md index a876bcbfd..7f1f91892 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -120,6 +120,7 @@ Programmers Scott Howard Sebastian Wick (swick) Sergey Shambir + ShadowRadiance sir_herrbatka smbas Stefan Galowicz (bogglez) diff --git a/apps/openmw/mwphysics/physicssystem.cpp b/apps/openmw/mwphysics/physicssystem.cpp index cc3ba40e1..246e5eb59 100644 --- a/apps/openmw/mwphysics/physicssystem.cpp +++ b/apps/openmw/mwphysics/physicssystem.cpp @@ -450,8 +450,8 @@ namespace MWPhysics if (inertia.z() < 0) inertia.z() *= slowFall; if (slowFall < 1.f) { - inertia.x() = 0; - inertia.y() = 0; + inertia.x() *= slowFall; + inertia.y() *= slowFall; } physicActor->setInertialForce(inertia); }