mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-26 23:20:34 -05:00
Fix player max health being set to 100 after down in solo
This commit is contained in:
@ -218,14 +218,14 @@ perk_set_max_health_if_jugg( perk, set_premaxhealth, clamp_health_to_max_health
|
||||
}
|
||||
else
|
||||
{
|
||||
max_total_health = 100;
|
||||
max_total_health = level.player_starting_health;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( perk == "health_reboot" )
|
||||
{
|
||||
max_total_health = 100;
|
||||
max_total_health = level.player_starting_health;
|
||||
}
|
||||
}
|
||||
if ( isDefined( max_total_health ) )
|
||||
|
Reference in New Issue
Block a user