diff --git a/code/datums/effects/xeno_strains/execute_tag.dm b/code/datums/effects/xeno_strains/execute_tag.dm index 5503b35a296c..3f4e5da75081 100644 --- a/code/datums/effects/xeno_strains/execute_tag.dm +++ b/code/datums/effects/xeno_strains/execute_tag.dm @@ -7,11 +7,11 @@ /datum/effects/execute_tag/New(atom/affected, mob/from = null, last_dmg_source = null, zone = "chest", ttl = 35) . = ..() - addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(qdel), src), ttl) + QDEL_IN(src, ttl) if (ishuman(affected)) var/mob/living/carbon/human/affected_human = affected - affected_human.update_xeno_hostile_hud() + affected_human.update_execute_hud() /datum/effects/execute_tag/validate_atom(mob/living/carbon/affected_carbon) @@ -28,7 +28,7 @@ return var/mob/living/carbon/human/affected_human = affected_atom - affected_human.update_xeno_hostile_hud() + affected_human.update_execute_hud() /datum/effects/execute_tag/Destroy() @@ -36,6 +36,6 @@ return ..() var/mob/living/carbon/human/affected_human = affected_atom - addtimer(CALLBACK(affected_human, TYPE_PROC_REF(/mob/living/carbon/human, update_xeno_hostile_hud)), 0.3 SECONDS) + addtimer(CALLBACK(affected_human, TYPE_PROC_REF(/mob/living/carbon/human, update_execute_hud)), 0.3 SECONDS) return ..()