Skip to content

Commit

Permalink
[MIRROR] Fixes bad register signal call in silverscale statue action (#…
Browse files Browse the repository at this point in the history
…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 <[email protected]>
  • Loading branch information
2 people authored and FFMirrorBot committed Jan 26, 2024
1 parent c18c4c3 commit e39277b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/surgery/organs/internal/tongue/_tongue.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit e39277b

Please sign in to comment.