Skip to content

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
XutaxKamay committed Sep 13, 2024
1 parent 82ab3ba commit e0e8d03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions game/client/cstrike/c_cs_player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2540,8 +2540,8 @@ void C_CSPlayer::FireGameEvent( IGameEvent* event )
buffer_armor[0] = 0;
}

auto realAP = max( player->GetHealth() - health_damages, 0 );
auto realHP = max( player->ArmorValue() - armor_damages, 0 );
auto realHP = max( player->GetHealth() - health_damages, 0 );
auto realAP = max( player->ArmorValue() - armor_damages, 0 );

hudChat->Printf( CHAT_FILTER_NONE,
"\7FFFFFF\x7"
Expand Down

0 comments on commit e0e8d03

Please sign in to comment.