diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm
index 3cacf1b309..b79a0e81a5 100644
--- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm
+++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm
@@ -128,10 +128,10 @@
/datum/species/jelly/slime/on_species_gain(mob/living/carbon/C, datum/species/old_species)
..()
if(ishuman(C))
- slime_split = new
+ /*slime_split = new
slime_split.Grant(C)
swap_body = new
- swap_body.Grant(C)
+ swap_body.Grant(C)*/
if(!bodies || !bodies.len)
bodies = list(C)
@@ -145,10 +145,10 @@
bodies = old_species.bodies
/datum/species/jelly/slime/spec_life(mob/living/carbon/human/H)
- if(H.blood_volume >= BLOOD_VOLUME_SLIME_SPLIT)
+ /*if(H.blood_volume >= BLOOD_VOLUME_SLIME_SPLIT)
if(prob(5))
- to_chat(H, "You feel very bloated!")
- else if(H.nutrition >= NUTRITION_LEVEL_WELL_FED)
+ to_chat(H, "You feel very bloated!")*/
+ if(H.nutrition >= NUTRITION_LEVEL_WELL_FED)
H.blood_volume += 3
H.nutrition -= 2.5