From 718e0034c81da1724282000903c1b361742c4f62 Mon Sep 17 00:00:00 2001 From: Vladislav Mikhalko Date: Tue, 21 Jan 2025 15:19:51 +0300 Subject: [PATCH] fix plating construction on lattice and catwalk (#28024) --- code/game/objects/structures/lattice.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm index 5ba070de0e8..0aa3230c94e 100644 --- a/code/game/objects/structures/lattice.dm +++ b/code/game/objects/structures/lattice.dm @@ -40,7 +40,7 @@ else // hand this off to the turf instead (for building plating, catwalks, etc) var/turf/T = get_turf(src) - return T.attack_by(C, user, params) + return T.item_interaction(user, C, params) /obj/structure/lattice/deconstruct(disassembled = TRUE) if(!(flags & NODECONSTRUCT))