From 568a6681b7f004b8b5ab776b2d6095e6627ed2e1 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Wed, 24 Sep 2025 13:57:55 -0400 Subject: [PATCH] fix melee attacks not working with tendrils (#30454) --- code/game/objects/structures/lavaland/necropolis_tendril.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/structures/lavaland/necropolis_tendril.dm b/code/game/objects/structures/lavaland/necropolis_tendril.dm index 4bf4f1d81ce..a2e0c09600b 100644 --- a/code/game/objects/structures/lavaland/necropolis_tendril.dm +++ b/code/game/objects/structures/lavaland/necropolis_tendril.dm @@ -44,6 +44,7 @@ GLOBAL_LIST_EMPTY(tendrils) return ..() /obj/structure/spawner/lavaland/attacked_by(obj/item/attacker, mob/living/user) + . = ..() SEND_SIGNAL(src, COMSIG_SPAWNER_SET_TARGET, user) /obj/structure/spawner/lavaland/bullet_act(obj/item/projectile/P)