1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-04-03 19:20:12 +00:00

Merge branch 'hardlanding' into 'master'

Init mJumpState based on saved fallheight ()

See merge request 
This commit is contained in:
psi29a 2021-01-11 20:46:42 +00:00
commit 29fdcb3fa1
2 changed files with 5 additions and 0 deletions
CHANGELOG.md
apps/openmw/mwmechanics

@ -88,6 +88,7 @@
Bug #5703: OpenMW-CS menu system crashing on XFCE
Bug #5706: AI sequences stop looping after the saved game is reloaded
Bug #5731: Editor: skirts are invisible on characters
Bug #5739: Saving and loading the save a second or two before hitting the ground doesn't count fall damage
Bug #5758: Paralyzed actors behavior is inconsistent with vanilla
Bug #5762: Movement solver is insufficiently robust
Feature #390: 3rd person look "over the shoulder"

@ -883,7 +883,11 @@ CharacterController::CharacterController(const MWWorld::Ptr &ptr, MWRender::Anim
}
if(!cls.getCreatureStats(mPtr).isDead())
{
mIdleState = CharState_Idle;
if (cls.getCreatureStats(mPtr).getFallHeight() > 0)
mJumpState = JumpState_InAir;
}
else
{
const MWMechanics::CreatureStats& cStats = mPtr.getClass().getCreatureStats(mPtr);