Skip to content

Commit

Permalink
Merge branch 'master' into mobile_hacks
Browse files Browse the repository at this point in the history
  • Loading branch information
nekonomicon committed Jan 3, 2025
2 parents 661d027 + e530099 commit c525400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ int CBasePlayer::TakeDamage( entvars_t *pevInflictor, entvars_t *pevAttacker, fl

// this cast to INT is critical!!! If a player ends up with 0.5 health, the engine will get that
// as an int (zero) and think the player is dead! (this will incite a clientside screentilt, etc)
fTookDamage = CBaseMonster::TakeDamage( pevInflictor, pevAttacker, (int)flDamage, bitsDamageType );
fTookDamage = CBaseMonster::TakeDamage( pevInflictor, pevAttacker, flDamage >= 0.0f ? floor(flDamage) : ceil(flDamage), bitsDamageType );

// reset damage time countdown for each type of time based damage player just sustained
{
Expand Down

0 comments on commit c525400

Please sign in to comment.