From cc86d3bb369807aa432b347c19123969b8570c24 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Wed, 28 Jul 2021 23:17:09 +0200 Subject: [PATCH] [MIRROR] Logs kudzu tray planting in investigate botany instead of its own investigate file (#7194) * Logs kudzu tray planting in investigate botany instead of its own investigate file (#60458) This PR moves the investigate_log subject of Kudzu being planted in a tray to investigate_botany instead of its own log file. All the other kudzu logging is in investigate_botany so this one was the odd one out. Consistency for logging. * Logs kudzu tray planting in investigate botany instead of its own investigate file Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- code/modules/hydroponics/hydroponics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm index 5434ae2ee0e..8d7cfa30931 100644 --- a/code/modules/hydroponics/hydroponics.dm +++ b/code/modules/hydroponics/hydroponics.dm @@ -571,7 +571,7 @@ else if(istype(O, /obj/item/seeds) && !istype(O, /obj/item/seeds/sample)) if(!myseed) if(istype(O, /obj/item/seeds/kudzu)) - investigate_log("had Kudzu planted in it by [key_name(user)] at [AREACOORD(src)]","kudzu") + investigate_log("had Kudzu planted in it by [key_name(user)] at [AREACOORD(src)].", INVESTIGATE_BOTANY) if(!user.transferItemToLoc(O, src)) return to_chat(user, span_notice("You plant [O]."))