Fixes randomized seed nutrient_consumption

Centers the range of possible values evenly between small amount and
heavy supply.
This commit is contained in:
mwerezak
2015-02-11 23:06:29 -05:00
parent 41816c26bf
commit 28f3bf739d

View File

@@ -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