fix(Core/Player): Reduce Health Regeneration bonus while sitting to 33% (#15954)
Update Player.cpp
This commit is contained in:
parent
97f51c5223
commit
2e9cb71987
1 changed files with 1 additions and 1 deletions
|
|
@ -1988,7 +1988,7 @@ void Player::RegenerateHealth()
|
|||
|
||||
if (!IsStandState())
|
||||
{
|
||||
addvalue *= 1.5f;
|
||||
addvalue *= 1.33f;
|
||||
}
|
||||
|
||||
AuraEffectList const& mModHealthRegenPct = GetAuraEffectsByType(SPELL_AURA_MOD_HEALTH_REGEN_PERCENT);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue