From 3505c83ce5c53ba98967a87dfd020ef67e72699b Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Sun, 29 Mar 2026 14:22:34 -0700 Subject: [PATCH] [MIRROR] makes tray yield mod actually work (#12612) Co-authored-by: Cameron Lennox --- 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 cf554f074a..55df7d4ede 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -813,7 +813,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