From c83c6b652eb33cd1c69cfbc596f396e2817b69a5 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Wed, 17 Sep 2014 00:51:20 +0930 Subject: [PATCH] Compiile fix. --- code/modules/hydroponics/hydro_tray.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/hydro_tray.dm b/code/modules/hydroponics/hydro_tray.dm index d13c2adf35..f1da2234ac 100644 --- a/code/modules/hydroponics/hydro_tray.dm +++ b/code/modules/hydroponics/hydro_tray.dm @@ -197,7 +197,7 @@ // Other plants also mutate if enough mutagenic compounds have been added. if(!seed.immutable) if(prob(min(mutation_level,100))) - mutate(random(100) < 25) ? 2 : 1) + mutate((rand(100) < 25) ? 2 : 1) mutation_level = 0 // Maintain tray nutrient and water levels.