Page MenuHomeFeedback Tracker

You have broken your own infinite stamina variable that I was using...
Assigned, NormalPublic

Description

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.

Details

Severity
Major
Resolution
Open
Reproducibility
Always
Operating System
Windows 10
Category
Gameplay
Steps To Reproduce

Add a new PBO with this code in 4_World.

modded class StaminaHandler
{
    override void Update(float deltaT, int pCurrentCommandID)
    {
        return;
    }
    
    override void DepleteStaminaEx(EStaminaModifiers modifier, float dT = -1, float coef = 1.0)
    {
        return;
    }
}

Event Timeline

Geez changed the task status from New to Assigned.Thu, Apr 3, 4:27 PM