From fdf869fa0ffb09daa3102bddb177d57da697b3eb Mon Sep 17 00:00:00 2001 From: Robustin Date: Wed, 4 Nov 2015 17:24:28 -0500 Subject: [PATCH] Update species_types.dm --- code/modules/mob/living/carbon/human/species_types.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm index 9d4e708b2c4..b0cb6e83826 100644 --- a/code/modules/mob/living/carbon/human/species_types.dm +++ b/code/modules/mob/living/carbon/human/species_types.dm @@ -210,8 +210,8 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) for(var/datum/reagent/toxin/slimejelly/S in H.reagents.reagent_list) if(S.volume < 200) if(H.nutrition >= NUTRITION_LEVEL_STARVING) - H.reagents.add_reagent("slimejelly", 1) - H.nutrition -= 2 + H.reagents.add_reagent("slimejelly", 0.5) + H.nutrition -= 2.5 if(S.volume < 50) if(prob(5)) H << "You feel drained!" @@ -254,8 +254,8 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H) H << "You feel very bloated!" if(S.volume < 200) if(H.nutrition >= NUTRITION_LEVEL_WELL_FED) - H.reagents.add_reagent("slimejelly", 1) - H.nutrition -= 2 + H.reagents.add_reagent("slimejelly", 0.5) + H.nutrition -= 2.5 ..()