From 86457e37b8d5ce8da271a6543245a61323ae7dfd Mon Sep 17 00:00:00 2001 From: distributivgesetz Date: Sun, 8 Oct 2023 08:49:06 +0200 Subject: [PATCH] Supermatter shards can be unfastened with right click (#78617) ## About The Pull Request Title summarizes all. Closes #68685 ## Why It's Good For The Game Less people dusting themselves by accident. ## Changelog :cl: qol: Supermatter shards can now be fastened with right click too. Now, just don't forget to use a wrench. /:cl: Co-authored-by: Jeremiah <42397676+jlsnow301@users.noreply.github.com> --- code/datums/components/supermatter_crystal.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/datums/components/supermatter_crystal.dm b/code/datums/components/supermatter_crystal.dm index 66087134388..fbd70f6235c 100644 --- a/code/datums/components/supermatter_crystal.dm +++ b/code/datums/components/supermatter_crystal.dm @@ -15,6 +15,7 @@ RegisterSignal(parent, COMSIG_ATOM_ATTACK_HAND, PROC_REF(hand_hit)) RegisterSignal(parent, COMSIG_ATOM_ATTACKBY, PROC_REF(attackby_hit)) RegisterSignal(parent, COMSIG_ATOM_TOOL_ACT(TOOL_WRENCH), PROC_REF(tool_hit)) + RegisterSignal(parent, COMSIG_ATOM_SECONDARY_TOOL_ACT(TOOL_WRENCH), PROC_REF(tool_hit)) RegisterSignal(parent, COMSIG_ATOM_BUMPED, PROC_REF(bumped_hit)) RegisterSignal(parent, COMSIG_ATOM_INTERCEPT_Z_FALL, PROC_REF(intercept_z_fall)) RegisterSignal(parent, COMSIG_ATOM_ON_Z_IMPACT, PROC_REF(on_z_impact)) @@ -37,6 +38,7 @@ COMSIG_ATOM_ATTACK_HAND, COMSIG_ATOM_ATTACKBY, COMSIG_ATOM_TOOL_ACT(TOOL_WRENCH), + COMSIG_ATOM_SECONDARY_TOOL_ACT(TOOL_WRENCH), COMSIG_ATOM_BUMPED, COMSIG_ATOM_INTERCEPT_Z_FALL, COMSIG_ATOM_ON_Z_IMPACT,