From 072fc6e1d524b26b6d156a1a632ebe118a9c6707 Mon Sep 17 00:00:00 2001 From: Adri Date: Wed, 31 Aug 2022 16:06:16 +0200 Subject: [PATCH] Fixes tower cap logs being choppable in bags (#18939) --- code/modules/hydroponics/grown/towercap.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/hydroponics/grown/towercap.dm b/code/modules/hydroponics/grown/towercap.dm index 5858db2947f..93f38bc43fe 100644 --- a/code/modules/hydroponics/grown/towercap.dm +++ b/code/modules/hydroponics/grown/towercap.dm @@ -52,6 +52,9 @@ /obj/item/grown/log/attackby(obj/item/W, mob/user, params) if(is_sharp(W)) + if(in_inventory) + to_chat(user, "You need to place [src] on a flat surface to make [plank_name].") + return user.show_message("You make [plank_name] out of \the [src]!", 1) var/seed_modifier = 0 if(seed)