diff --git a/code/modules/mob/living/carbon/human/species_types.dm b/code/modules/mob/living/carbon/human/species_types.dm
index f46e48ca5d1..0807999d360 100644
--- a/code/modules/mob/living/carbon/human/species_types.dm
+++ b/code/modules/mob/living/carbon/human/species_types.dm
@@ -208,10 +208,10 @@ datum/species/human/spec_death(gibbed, mob/living/carbon/human/H)
H << "You feel empty!"
for(var/datum/reagent/toxin/slimejelly/S in H.reagents.reagent_list)
- if(S.volume < 100)
+ if(S.volume < 200)
if(H.nutrition >= NUTRITION_LEVEL_STARVING)
- H.reagents.add_reagent("slimejelly", 0.5)
- H.nutrition -= 5
+ H.reagents.add_reagent("slimejelly", 1)
+ H.nutrition -= 2
if(S.volume < 50)
if(prob(5))
H << "You feel drained!"