From eadfa2042875ec6b974a90f5086570bc170aac41 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sat, 30 Jan 2016 08:12:17 +1030 Subject: [PATCH] Removes prosthetic limb damage resistance and sever vulnerability. --- code/modules/organs/organ_external.dm | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index 4467ae3d84..9bba9913f6 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -921,22 +921,11 @@ Note that amputating the affected organ does in fact remove the infection from t /obj/item/organ/external/robotize(var/company, var/skip_prosthetics = 0, var/keep_organs = 0) - if(status & ORGAN_ROBOT) - return - - if(status & ORGAN_ROBOT) return ..() - brute_mod = 0.8 // More resistant to brute. - burn_mod = 0.8 // More resistant to burn. - max_damage = initial(max_damage)*0.65 // Significantly easier to remove with trauma. - - brute_mod = 0.8 - burn_mod = 0.8 - if(company) model = company var/datum/robolimb/R = all_robolimbs[company] @@ -955,7 +944,6 @@ Note that amputating the affected organ does in fact remove the infection from t for(var/obj/item/organ/external/T in children) T.robotize(company, 1) - if(owner) if(!skip_prosthetics)