From f2b1ea6322904d801962f697b9413c0372aae0ac Mon Sep 17 00:00:00 2001 From: Cameron Lennox Date: Sun, 29 Mar 2026 17:03:57 -0400 Subject: [PATCH] makes tray yield mod actually work (#19353) --- code/modules/hydroponics/seed.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index f50145231f7..746c022b03b 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -809,7 +809,7 @@ yield_mod = 0 total_yield = get_trait(TRAIT_YIELD) else - total_yield = get_trait(TRAIT_YIELD) + rand(yield_mod) + total_yield = get_trait(TRAIT_YIELD) + rand(0, yield_mod) total_yield = max(1,total_yield) for(var/i = 0;i