From 4bedceca78ae430275074d2ee5c7cc4673ed1f8e Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Thu, 18 Sep 2014 21:45:12 +0930 Subject: [PATCH] Hydro tweaks. --- code/modules/hydroponics/hydro_tray.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/hydro_tray.dm b/code/modules/hydroponics/hydro_tray.dm index f1da2234aca..a7aeba259c8 100644 --- a/code/modules/hydroponics/hydro_tray.dm +++ b/code/modules/hydroponics/hydro_tray.dm @@ -172,7 +172,7 @@ // Weeds like water and nutrients, there's a chance the weed population will increase. // Bonus chance if the tray is unoccupied. - if(waterlevel > 10 && nutrilevel > 2 && prob(isnull(seed) ? 6 : 3)) + if(waterlevel > 10 && nutrilevel > 2 && prob(isnull(seed) ? 5 : 2)) weedlevel += 1 * HYDRO_SPEED_MULTIPLIER // There's a chance for a weed explosion to happen if the weeds take over. @@ -187,7 +187,7 @@ return // Advance plant age. - if(prob(50)) age += 1 * HYDRO_SPEED_MULTIPLIER + if(prob(30)) age += 1 * HYDRO_SPEED_MULTIPLIER //Highly mutable plants have a chance of mutating every tick. if(seed.immutable == -1)