So, after the last update some changes were made to stamina and now many servers that were using infinite stamina are having issues with players being completely unable to jump, hold breath or do anything in regards to stamina usage other than running.
Using only this code:
modded class StaminaHandler { override void Update(float deltaT, int pCurrentCommandID) { return; } override void DepleteStaminaEx(EStaminaModifiers modifier, float dT = -1, float coef = 1.0) { return; } }
Jumping is completely broken, this has been the code used for over a year now and is based on this code from vanilla:
void DepleteStaminaEx(EStaminaModifiers modifier, float dT = -1, float coef = 1.0) { #ifdef DIAG_DEVELOPER if (m_StaminaDisabled) return; #endif void Update(float deltaT, int pCurrentCommandID) { #ifdef DIAG_DEVELOPER if (m_StaminaDisabled) return; #endif
Please can someone investigate.