From 5de38fdc17eafc721237cbbbebac4c0f886bda87 Mon Sep 17 00:00:00 2001 From: Raeschen Date: Fri, 1 Mar 2024 23:25:02 +0100 Subject: [PATCH] Remove a to_world in seeds (#7858) --- code/modules/hydroponics/trays/tray_update_icons.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/trays/tray_update_icons.dm b/code/modules/hydroponics/trays/tray_update_icons.dm index 0b3cf11231..afe78169b5 100644 --- a/code/modules/hydroponics/trays/tray_update_icons.dm +++ b/code/modules/hydroponics/trays/tray_update_icons.dm @@ -44,7 +44,7 @@ if(!seed.growth_stages) seed.update_growth_stages() if(!seed.growth_stages) - to_world("Seed type [seed.get_trait(TRAIT_PLANT_ICON)] cannot find a growth stage value.") + log_debug("Seed type [seed.get_trait(TRAIT_PLANT_ICON)] cannot find a growth stage value.") return var/overlay_stage = 1 if(age >= seed.get_trait(TRAIT_MATURATION))