From 8fff8f67b6bd2c043703148a2fcd3129676ada9d Mon Sep 17 00:00:00 2001 From: Toastical <20125180+Toastical@users.noreply.github.com> Date: Sun, 1 Feb 2026 05:59:10 +0200 Subject: [PATCH] fix touch spells initializing without a spell (#31562) --- code/datums/spells/touch_attacks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/spells/touch_attacks.dm b/code/datums/spells/touch_attacks.dm index 1c835fefa41..dff1da280c7 100644 --- a/code/datums/spells/touch_attacks.dm +++ b/code/datums/spells/touch_attacks.dm @@ -19,7 +19,7 @@ cooldown_handler.start_recharge(cooldown_handler.recharge_duration) return var/hand_handled = 1 - attached_hand = new hand_path(src) + attached_hand = new hand_path(src, src) RegisterSignal(user, COMSIG_MOB_WILLINGLY_DROP, PROC_REF(discharge_hand)) if(isalien(user)) user.put_in_hands(attached_hand)