From 408f3499dfedc47a2f392d3c0b231c1f7c69ea3e Mon Sep 17 00:00:00 2001 From: tralezab <40974010+tralezab@users.noreply.github.com> Date: Mon, 26 Apr 2021 01:30:39 -0700 Subject: [PATCH] what the fuck lol (#58695) Fixes not losing burden with mutation loss --- code/datums/dna.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/dna.dm b/code/datums/dna.dm index 18445becacf..fa7f225f3f4 100644 --- a/code/datums/dna.dm +++ b/code/datums/dna.dm @@ -72,6 +72,7 @@ return force_give(new mutation_type (class, time, copymut = mutation)) /datum/dna/proc/remove_mutation(mutation_type) + SEND_SIGNAL(holder, COMSIG_CARBON_LOSE_MUTATION, mutation_type) return force_lose(get_mutation(mutation_type)) /datum/dna/proc/check_mutation(mutation_type)