From 59119fea075eac4cd52da9f6c8a25c05b3aa367f Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Mon, 24 Jun 2013 22:09:03 -0700 Subject: [PATCH] Fixes #3146 --- code/modules/organs/organ_external.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index d166dccd38..f5092f5932 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -307,6 +307,10 @@ //Updating wounds. Handles wound natural I had some free spachealing, internal bleedings and infections /datum/organ/external/proc/update_wounds() + + if((status & ORGAN_ROBOT)) //Robotic limbs don't heal or get worse. + return + for(var/datum/wound/W in wounds) // wounds can disappear after 10 minutes at the earliest if(W.damage == 0 && W.created + 10 * 10 * 60 <= world.time)