Added an /obj/vaultspawner which very shitty right now.
 Health Scanner
Added xeno embryo detection.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1542 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
uporotiy
2011-05-07 15:38:32 +00:00
parent 864f58f009
commit d062e68f4b
9 changed files with 45 additions and 2 deletions
+3 -1
View File
@@ -746,7 +746,7 @@
if(client)
for(var/image/hud in client.images)
if(hud.icon_state in list("healthdead","healthill","healthy","health-100","health0","health1","health10","health25","health40","health60","health80","health100")) //ugly, but icon comparison is worse, I believe
if(copytext(hud.icon_state,6) == "health") //ugly, but icon comparison is worse, I believe
del(hud)
if (src.stat == 2 || src.mutations & 4)
@@ -802,6 +802,8 @@
client.images += image(tempHud,patient,RoundHealth(patient.health))
if(patient.stat == 2)
client.images += image(tempHud,patient,"healthdead")
else if(patient.alien_egg_flag)
client.images += image(tempHud,patient,"healthxeno")
else if(patient.virus)
client.images += image(tempHud,patient,"healthill")
else