diff --git a/code/modules/hydroponics/hydroponics_tray.dm b/code/modules/hydroponics/hydroponics_tray.dm index 42fe9a3adff..caaf5502565 100644 --- a/code/modules/hydroponics/hydroponics_tray.dm +++ b/code/modules/hydroponics/hydroponics_tray.dm @@ -152,7 +152,7 @@ if(myseed && !dead) // Advance age age++ - if(age < myseed.maturation) + if(age <= myseed.maturation) lastproduce = age needs_update = 1 @@ -227,7 +227,7 @@ adjustHealth(-rand(1,5) / rating) // Harvest code - if(age > myseed.production && (age - lastproduce) > myseed.production && (!harvest && !dead)) + if(age > myseed.production && (age - lastproduce) >= myseed.production && (!harvest && !dead)) nutrimentMutation() if(myseed && myseed.yield != -1) // Unharvestable shouldn't be harvested harvest = TRUE