From b184cfefc53cbf28998c238901313910f155d95f Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 18 Jul 2020 22:00:28 +0100 Subject: [PATCH] imagine allowing wound healing --- code/modules/mob/living/carbon/carbon_defense.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/carbon_defense.dm b/code/modules/mob/living/carbon/carbon_defense.dm index 4aac8af0ac..18e38ae44d 100644 --- a/code/modules/mob/living/carbon/carbon_defense.dm +++ b/code/modules/mob/living/carbon/carbon_defense.dm @@ -132,9 +132,9 @@ if(S.next_step(user, user.a_intent)) return TRUE - for(var/datum/wound/W in all_wounds) - if(W.try_handling(user)) - return 1 + for(var/datum/wound/W in all_wounds) + if(W.try_handling(user)) + return 1 /mob/living/carbon/attack_paw(mob/living/carbon/monkey/M)