From c1ac3bae6e450d8dfb25fca83caedba4be37b38b Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 18 Jul 2020 22:06:07 +0100 Subject: [PATCH] appease travis --- code/datums/status_effects/wound_effects.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/datums/status_effects/wound_effects.dm b/code/datums/status_effects/wound_effects.dm index 751a3508a3..cb23258118 100644 --- a/code/datums/status_effects/wound_effects.dm +++ b/code/datums/status_effects/wound_effects.dm @@ -124,12 +124,13 @@ linked_wound = null linked_limb = null UnregisterSignal(owner, COMSIG_CARBON_LOSE_WOUND) + return ..() /datum/status_effect/wound/on_apply() if(!iscarbon(owner)) return FALSE RegisterSignal(owner, COMSIG_CARBON_LOSE_WOUND, .proc/check_remove) - return TRUE + return ..() /// check if the wound getting removed is the wound we're tied to /datum/status_effect/wound/proc/check_remove(mob/living/L, datum/wound/W)