Skip to content

Commit

Permalink
and that
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Aug 10, 2023
1 parent 164f9c0 commit 0b81a34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/datums/mob_hud.dm
Original file line number Diff line number Diff line change
Expand Up @@ -253,13 +253,13 @@ var/list/datum/mob_hud/huds = list(
for(var/datum/mob_hud/hud in huds)
if(istype(hud, /datum/mob_hud/xeno))
hud.remove_from_hud(src)
hud.remove_hud_from(src)
hud.remove_hud_from(src, HUD_SOURCE_INNATE)
else if (istype(hud, /datum/mob_hud/xeno_infection))
hud.remove_hud_from(src)
hud.remove_hud_from(src, HUD_SOURCE_INNATE)
if (xeno_hostile_hud)
xeno_hostile_hud = FALSE
var/datum/mob_hud/hostile_hud = huds[MOB_HUD_XENO_HOSTILE]
hostile_hud.remove_hud_from(src)
hostile_hud.remove_hud_from(src, HUD_SOURCE_INNATE)



Expand Down

0 comments on commit 0b81a34

Please sign in to comment.