From dad5308456ea3199ac14f185ab3efc245efdc9cf Mon Sep 17 00:00:00 2001 From: theo-3 <85434590+theo-3@users.noreply.github.com> Date: Sun, 18 Jul 2021 10:49:08 +0300 Subject: [PATCH] Fix missing return --- code/modules/hydroponics/seeds.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/hydroponics/seeds.dm b/code/modules/hydroponics/seeds.dm index 7092f0965f8..9043513dd7f 100644 --- a/code/modules/hydroponics/seeds.dm +++ b/code/modules/hydroponics/seeds.dm @@ -337,6 +337,7 @@ user.show_message("You designate the [plantname] as the [V] variant.") variant = V apply_variant_name() + return ..() // Fallthrough to item/attackby() so that bags can pick seeds up /obj/item/seeds/proc/apply_variant_name()