From 74f29bc6f1f9f477c00099aedaf109f0496f7a84 Mon Sep 17 00:00:00 2001 From: rainnspace Date: Sat, 18 Jan 2025 12:12:18 +0300 Subject: [PATCH] fix plating construction on lattice and catwalk --- 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 5ba070de0e83..0aa3230c94ef 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))