Skip to content

Commit

Permalink
moving code should always be tested before commiting
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertNanotracen committed Mar 28, 2024
1 parent 852676e commit c67db2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions monkestation/code/modules/virology/living/infection_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@
//and even if they occur, the new effect will have a badness similar to the old one, so helpful pathogen won't instantly become deadly ones.
else
//Slowly decay back to regular strength immune system while you are sick
if(mob.immune_system.strength > 1)
mob.immune_system.strength = max(mob.immune_system.strength - 0.01, 1)
if(immune_system.strength > 1)
immune_system.strength = max(immune_system.strength - 0.01, 1)

/mob/living/proc/try_contact_infect(datum/disease/advanced/D, zone = BODY_ZONE_EVERYTHING, note = "Try Contact Infect")
if(!(D.spread_flags & DISEASE_SPREAD_CONTACT_SKIN))
Expand Down

0 comments on commit c67db2a

Please sign in to comment.