Skip to content

Commit

Permalink
tweak(borer): updated borer visibility on medical HUDs
Browse files Browse the repository at this point in the history
Updated borer visibility on medical HUDs according to recent knowledge changes.
Medical HUDs no longer detect borers, while stationary medical scanners retain this capability.
https://wiki.ss13.ru/index.php?title=Knowledge
  • Loading branch information
keepm4n committed Dec 2, 2024
1 parent de57b76 commit d88a26d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions code/game/mecha/medical/odysseus.dm
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,6 @@
holder.icon_state = "hudxeno"
else if(foundVirus)
holder.icon_state = "hudill"
else if(patient.has_brain_worms())
var/mob/living/simple_animal/borer/B = patient.has_brain_worms()
if(B.controlling)
holder.icon_state = "hudbrainworm"
else
holder.icon_state = "hudhealthy"
else
holder.icon_state = "hudhealthy"

Expand Down
6 changes: 0 additions & 6 deletions code/modules/mob/living/carbon/human/life.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1110,12 +1110,6 @@
holder.icon_state = "hudxeno"
else if(foundVirus)
holder.icon_state = "hudill"
else if(has_brain_worms())
var/mob/living/simple_animal/borer/B = has_brain_worms()
if(B.controlling)
holder.icon_state = "hudbrainworm"
else
holder.icon_state = "hudhealthy"
else
holder.icon_state = "hudhealthy"

Expand Down

0 comments on commit d88a26d

Please sign in to comment.