Added cortical borers to the various HUDs.

This commit is contained in:
Zuhayr
2013-12-18 14:03:04 +10:30
parent 65eb6354c5
commit c5849aaa96
5 changed files with 16 additions and 8 deletions

View File

@@ -104,6 +104,8 @@
holder = patient.hud_list[STATUS_HUD]
if(patient.stat == 2)
holder.icon_state = "huddead"
else if(patient.has_brain_worms())
holder.icon_state = "hudbrainworm"
else if(patient.status_flags & XENO_HOST)
holder.icon_state = "hudxeno"
else if(foundVirus)

View File

@@ -69,6 +69,8 @@
holder = patient.hud_list[STATUS_HUD]
if(patient.stat == 2)
holder.icon_state = "huddead"
else if(patient.has_brain_worms())
holder.icon_state = "hudbrainworm"
else if(patient.status_flags & XENO_HOST)
holder.icon_state = "hudxeno"
else if(foundVirus)

View File

@@ -156,6 +156,8 @@ Works together with spawning an observer, noted above.
holder = patient.hud_list[STATUS_HUD]
if(patient.stat == 2)
holder.icon_state = "huddead"
else if(patient.has_brain_worms())
holder.icon_state = "hudbrainworm"
else if(patient.status_flags & XENO_HOST)
holder.icon_state = "hudxeno"
else if(foundVirus)

View File

@@ -76,6 +76,8 @@
holder = patient.hud_list[STATUS_HUD]
if(patient.stat == 2)
holder.icon_state = "huddead"
else if(patient.has_brain_worms())
holder.icon_state = "hudbrainworm"
else if(patient.status_flags & XENO_HOST)
holder.icon_state = "hudxeno"
else if(foundVirus)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB