Lifelike oversights

This commit is contained in:
Arokha Sieyes
2018-03-17 12:14:13 -04:00
parent 4fb345ae6b
commit 99032248ab
2 changed files with 2 additions and 2 deletions
@@ -265,7 +265,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon()
if(part.robotic >= ORGAN_ROBOT)
icon_key += "2[part.model ? "-[part.model]": ""]"
robolimb_count++
if(part.organ_tag == BP_HEAD || part.organ_tag == BP_TORSO || part.organ_tag == BP_GROIN)
if((part.robotic == ORGAN_ROBOT || part.robotic == ORGAN_LIFELIKE) && (part.organ_tag == BP_HEAD || part.organ_tag == BP_TORSO || part.organ_tag == BP_GROIN)) //VOREStation Edit - Not for nanoform parts
robobody_count ++
else if(part.status & ORGAN_DEAD)
icon_key += "3"
+1 -1
View File
@@ -18,7 +18,7 @@
return 0
if (affected.status & ORGAN_DESTROYED)
return 0
if (!(affected.robotic == ORGAN_ROBOT)) //VOREStation Edit - No good on ORGAN_NANOFORM
if (!(affected.robotic == ORGAN_ROBOT || affected.robotic == ORGAN_LIFELIKE)) //VOREStation Edit - No good on ORGAN_NANOFORM
return 0
return 1