From 89b837461e8b9d7064de45592a57bf05730b44f4 Mon Sep 17 00:00:00 2001 From: The0bserver Date: Tue, 1 Sep 2020 02:32:28 -0400 Subject: [PATCH] This should squash the error. --- code/modules/hydroponics/hydroponics.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm index 008fd9a88d..e4c4fadc3c 100644 --- a/code/modules/hydroponics/hydroponics.dm +++ b/code/modules/hydroponics/hydroponics.dm @@ -521,11 +521,12 @@ plant_health = myseed.endurance lastcycle = world.time update_icon() + return else to_chat(user, "[src] already has seeds in it!") return - else if(istype(O, /obj/item/plant_analyzer)) + else if(istype(O, /obj/item/plant_analyzer)) var/obj/item/plant_analyzer/P_analyzer = O if(myseed) if(P_analyzer.scan_mode == PLANT_SCANMODE_STATS)