Skip to content

Commit

Permalink
Merge pull request #35503 from FuelType-Memes/master
Browse files Browse the repository at this point in the history
Fix MD trait not giving immunity to faulty bionics
  • Loading branch information
ZhilkinSerg authored Nov 13, 2019
2 parents 0bfa4c6 + fa4dd38 commit dd53c91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bionics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1878,7 +1878,7 @@ void player::bionics_install_failure( bionic_id bid, std::string installer, int
installer );
// In addition to the bonus, medical residents know enough OR protocol to avoid botching.
// Take MD and be immune to faulty bionics.
if( fail_type == 5 ) {
if( fail_type > 3 ) {
fail_type = rng( 1, 3 );
}
}
Expand Down

0 comments on commit dd53c91

Please sign in to comment.