From edf8f1962bad46f9f2564f5bc75a988e126a2da0 Mon Sep 17 00:00:00 2001 From: Erki Date: Sun, 8 Apr 2018 20:49:37 +0300 Subject: [PATCH] Fixes #4563 (#4565) --- .../Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm index b4f05d5c7a6..b0393eb3d9b 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm @@ -58,18 +58,21 @@ taste_mult = 4 reagent_state = SOLID metabolism = REM * 4 - var/nutriment_factor = -(REM * 4)/BASE_MAX_NUTRITION // Per removed in digest. + var/nutriment_factor = 12 // Per removed in digest. var/blood_factor = 6 var/regen_factor = 0.8 var/injectable = 0 - var/attrition_factor = -0.1 // Decreases attrition rate. + var/attrition_factor = -(REM * 4)/BASE_MAX_NUTRITION // Decreases attrition rate. color = "#664330" unaffected_species = IS_MACHINE + taste_description = "food" /datum/reagent/nutriment/synthetic name = "Synthetic Nutriment" id = "synnutriment" description = "A cheaper alternative to actual nutriment." + taste_description = "cheap food" + nutriment_factor = 10 attrition_factor = (REM * 4)/BASE_MAX_NUTRITION // Increases attrition rate. /datum/reagent/nutriment/mix_data(var/list/newdata, var/newamount)