From f1274b41f264a52b1ffb42b03f29cebed109c530 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Tue, 14 Nov 2017 19:27:19 -0500 Subject: [PATCH] redisables slime splitting --- .../living/carbon/human/species_types/jellypeople.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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