diff --git a/code/datums/organs/organ_external.dm b/code/datums/organs/organ_external.dm index 1487e8a048a..1eda7392f28 100644 --- a/code/datums/organs/organ_external.dm +++ b/code/datums/organs/organ_external.dm @@ -192,9 +192,8 @@ if(W.is_treated()) // slow healing var/amount = 0.2 - if(W.bandaged) amount++ - if(W.salved) amount++ - if(W.disinfected) amount++ + if(W.is_treated()) + amount += 10 // amount of healing is spread over all the wounds W.heal_damage((wound_update_accuracy * amount * W.amount * config.organ_regeneration_multiplier) / (20*owner.number_wounds+1))