[BOTANY] Fixes plant storage nutrient check

Reported only high, low or none with previous system.
This commit is contained in:
Datraen
2015-09-06 16:42:58 -04:00
parent c642e8c729
commit 05a29f8f3a

View File

@@ -101,7 +101,7 @@
if(seed.get_trait(TRAIT_REQUIRES_NUTRIENTS))
if(seed.get_trait(TRAIT_NUTRIENT_CONSUMPTION) < 0.05)
dat += "<td>Low</td>"
else if(seed.get_trait(TRAIT_REQUIRES_NUTRIENTS) > 0.2)
else if(seed.get_trait(TRAIT_NUTRIENT_CONSUMPTION) > 0.2)
dat += "<td>High</td>"
else
dat += "<td>Norm</td>"