From e39277ba98fd32ff99136c25c3017255610b0380 Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Thu, 25 Jan 2024 22:39:46 -0500 Subject: [PATCH] [MIRROR] Fixes bad register signal call in silverscale statue action (#628) * Fixes bad register signal call in silverscale statue action (#81102) ## About The Pull Request This is supposed to be an unregister not a register with no proc, surprised we don't have a stack trace or something for calling Register with no proc * Fixes bad register signal call in silverscale statue action --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- code/modules/surgery/organs/internal/tongue/_tongue.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/internal/tongue/_tongue.dm b/code/modules/surgery/organs/internal/tongue/_tongue.dm index 50e4e8fa478..f74a5b7a4e8 100644 --- a/code/modules/surgery/organs/internal/tongue/_tongue.dm +++ b/code/modules/surgery/organs/internal/tongue/_tongue.dm @@ -334,7 +334,7 @@ return // the statue ended up getting destroyed while in nullspace? var/mob/living/carbon/carbon_owner = owner - RegisterSignal(carbon_owner, COMSIG_MOVABLE_MOVED) + UnregisterSignal(carbon_owner, COMSIG_MOVABLE_MOVED) to_chat(carbon_owner, span_userdanger("Your existence as a living creature snaps as your statue form crumbles!")) carbon_owner.forceMove(get_turf(statue))