From ec8c188ed03b52e236f9b925f694c84416cc121d Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Sun, 16 Nov 2025 19:45:17 -0500 Subject: [PATCH] Fixes do_after in lick wonds (#18793) --- code/modules/mob/living/carbon/lick_wounds.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/lick_wounds.dm b/code/modules/mob/living/carbon/lick_wounds.dm index a21f33c73f2..edb1c5ba65b 100644 --- a/code/modules/mob/living/carbon/lick_wounds.dm +++ b/code/modules/mob/living/carbon/lick_wounds.dm @@ -66,7 +66,7 @@ if(W.bandaged && W.salved && W.disinfected) continue - if(!do_after(src, W.damage/5, W)) + if(!do_after(src, W.damage/5, src)) to_chat(src, span_notice("You must stand still to clean wounds.")) break