Fixes an earlier attempt at the previous commit

Fixes a comment that was a DIRTY LIAR
This commit is contained in:
Robson Richards
2013-11-10 02:04:00 +00:00
parent b2b6a9ff84
commit 6587fe30cd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -147,7 +147,7 @@
//Updates an organ's brute/burn states for use by update_damage_overlays()
//Returns 1 if we need to update overlays. 0 otherwise.
/obj/item/organ/limb/proc/update_organ_icon()
if(!status == 2)
if(status == ORGAN_ORGANIC) //Robotic limbs show no damage - RR
var/tbrute = round( (brute_dam/max_damage)*3, 1 )
var/tburn = round( (burn_dam/max_damage)*3, 1 )
if((tbrute != brutestate) || (tburn != burnstate))