From 3587f49d45963b21adb7c20dc784f60a6342e0a7 Mon Sep 17 00:00:00 2001 From: Mike Kuwait Date: Wed, 23 Aug 2023 20:57:58 +0300 Subject: [PATCH] wire cutter bug --- code/modules/hydroponics/hydro_tray.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/hydroponics/hydro_tray.dm b/code/modules/hydroponics/hydro_tray.dm index 9549b8fa59c1..9b6ac2839c20 100644 --- a/code/modules/hydroponics/hydro_tray.dm +++ b/code/modules/hydroponics/hydro_tray.dm @@ -189,7 +189,8 @@ return // Advance plant age. - if(prob(30)) age += 1 * HYDRO_SPEED_MULTIPLIER + if(!sampled) + if(prob(30)) age += 1 * HYDRO_SPEED_MULTIPLIER //Highly mutable plants have a chance of mutating every tick. if(seed.immutable == -1)