diff --git a/code/game/objects/items/robot_upgrades.dm b/code/game/objects/items/robot_upgrades.dm index f41fdc46d0c..0be90b6aae4 100644 --- a/code/game/objects/items/robot_upgrades.dm +++ b/code/game/objects/items/robot_upgrades.dm @@ -13,8 +13,8 @@ var/installed = 0 /obj/item/borg/upgrade/proc/action(var/mob/living/silicon/robot/R) - if(R.Stat() == 2) - usr << "/red The [src] will not function on a deseased cyborg." + if(R.stat == DEAD) + usr << "/red The [src] will not function on a deceased cyborg." return 1 return 0