Add more iconstates to optable for status at a glance

This commit is contained in:
Arokha Sieyes
2020-05-04 00:25:05 -04:00
parent d8802c844c
commit 8cb58505e9
2 changed files with 7 additions and 1 deletions
+7 -1
View File
@@ -67,7 +67,13 @@
var/mob/living/carbon/human/M = locate(/mob/living/carbon/human, src.loc)
if(M.lying)
victim = M
icon_state = M.pulse ? "table2-active" : "table2-idle"
if(M.pulse)
if(M.stat)
icon_state = "table2-sleep"
else
icon_state = "table2-active"
else
icon_state = "table2-dead"
return 1
victim = null
icon_state = "table2-idle"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 41 KiB