mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-21 09:23:53 +00:00
Fixed jump fatigue loss formula (fixes #3843)
This commit is contained in:
parent
80d1bb571c
commit
f484ef8ffb
1 changed files with 1 additions and 1 deletions
|
@ -1753,7 +1753,7 @@ void CharacterController::update(float duration)
|
|||
float normalizedEncumbrance = mPtr.getClass().getNormalizedEncumbrance(mPtr);
|
||||
if (normalizedEncumbrance > 1)
|
||||
normalizedEncumbrance = 1;
|
||||
const float fatigueDecrease = fatigueJumpBase + (1 - normalizedEncumbrance) * fatigueJumpMult;
|
||||
const float fatigueDecrease = fatigueJumpBase + normalizedEncumbrance * fatigueJumpMult;
|
||||
|
||||
if (!godmode)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue