Removes prosthetic limb damage resistance and sever vulnerability.

This commit is contained in:
Zuhayr
2016-01-30 08:12:17 +10:30
parent 34d76fdf6d
commit eadfa20428

View File

@@ -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)