From 05a29f8f3a1e9f859f3be9c29347da11b052e7a2 Mon Sep 17 00:00:00 2001 From: Datraen Date: Sun, 6 Sep 2015 16:42:58 -0400 Subject: [PATCH] [BOTANY] Fixes plant storage nutrient check Reported only high, low or none with previous system. --- code/modules/hydroponics/seed_storage.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/seed_storage.dm b/code/modules/hydroponics/seed_storage.dm index a4f91ce94c3..448173104be 100644 --- a/code/modules/hydroponics/seed_storage.dm +++ b/code/modules/hydroponics/seed_storage.dm @@ -101,7 +101,7 @@ if(seed.get_trait(TRAIT_REQUIRES_NUTRIENTS)) if(seed.get_trait(TRAIT_NUTRIENT_CONSUMPTION) < 0.05) dat += "Low" - else if(seed.get_trait(TRAIT_REQUIRES_NUTRIENTS) > 0.2) + else if(seed.get_trait(TRAIT_NUTRIENT_CONSUMPTION) > 0.2) dat += "High" else dat += "Norm"