From c7fb93075c594cf8a55959adcd7391da2642a127 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Thu, 8 Sep 2022 07:38:38 -0400 Subject: [PATCH] fixes katana runtime (#18993) --- code/modules/mining/lavaland/necropolis_chests.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index 7647d23f33f..a6f474a1993 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -588,7 +588,7 @@ playsound(src, 'sound/weapons/genhit3.ogg', 50, TRUE) RegisterSignal(target, COMSIG_MOVABLE_IMPACT, .proc/strike_throw_impact) var/atom/throw_target = get_edge_target_turf(target, user.dir) - target.throw_at(throw_target, 5, 3, user, FALSE, callback = CALLBACK(/datum/.proc/UnregisterSignal, target, COMSIG_MOVABLE_IMPACT)) + target.throw_at(throw_target, 5, 3, user, FALSE, callback = CALLBACK(target, /datum/.proc/UnregisterSignal, target, COMSIG_MOVABLE_IMPACT)) target.apply_damage(17, BRUTE, BODY_ZONE_CHEST) to_chat(target, "You've been struck by [user]!") user.do_attack_animation(target, ATTACK_EFFECT_PUNCH)