Skip to content

Commit

Permalink
linting linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan1ss1mo committed Feb 19, 2023
1 parent eab3f07 commit 460e05a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/character.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10937,9 +10937,9 @@ void Character::mod_pain( int npain )
}
if( mutation_value( "pain_modifier" ) != 0 ) {
npain = roll_remainder( npain + mutation_value( "pain_modifier" ) );
if (npain < 0) {
return;
}
if( npain < 0 ) {
return;
}
}
}
Creature::mod_pain( npain );
Expand Down

0 comments on commit 460e05a

Please sign in to comment.