From 28f3bf739d551cab04d8db4a1bddfc8cc0e29ced Mon Sep 17 00:00:00 2001 From: mwerezak Date: Wed, 11 Feb 2015 23:06:29 -0500 Subject: [PATCH] Fixes randomized seed nutrient_consumption Centers the range of possible values evenly between small amount and heavy supply. --- code/modules/hydroponics/seed_datums.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/seed_datums.dm b/code/modules/hydroponics/seed_datums.dm index 33e6f47c57..6fbfa3743a 100644 --- a/code/modules/hydroponics/seed_datums.dm +++ b/code/modules/hydroponics/seed_datums.dm @@ -255,7 +255,7 @@ proc/populate_seed_list() if(prob(90)) requires_nutrients = 1 - nutrient_consumption = rand(100)*0.1 + nutrient_consumption = rand(25)/100 else requires_nutrients = 0