From b79a9b557b513cd7d52480db4bd7c32c6df98e93 Mon Sep 17 00:00:00 2001 From: ExcessiveUseOfCobblestone <11748095+ExcessiveUseOfCobblestone@users.noreply.github.com> Date: Thu, 14 Sep 2017 12:24:21 -0400 Subject: [PATCH] Turfs call ..() in attackby (#30707) * gg * fixes that other issue * ok * okie dokie * removes this devil * ok this works * ok this works --- code/game/turfs/turf.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index c8be2aa28a0..0b8fbb38443 100755 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -95,6 +95,8 @@ C.is_empty(user) /turf/attackby(obj/item/C, mob/user, params) + if(..()) + return TRUE if(can_lay_cable() && istype(C, /obj/item/stack/cable_coil)) var/obj/item/stack/cable_coil/coil = C for(var/obj/structure/cable/LC in src)