From 158ae3f33b1ebd10c1cdd45d6daa8e3babc23948 Mon Sep 17 00:00:00 2001 From: Verkister Date: Sun, 4 Feb 2018 11:03:11 +0200 Subject: [PATCH] Clears the prey of numbenzyme on digestion death. -You can now do painless gurgles without getting pumped full of your prey's painkillers at the end. --- code/modules/vore/eating/belly_vr.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/vore/eating/belly_vr.dm b/code/modules/vore/eating/belly_vr.dm index 23e8449a60..df9bdc2920 100644 --- a/code/modules/vore/eating/belly_vr.dm +++ b/code/modules/vore/eating/belly_vr.dm @@ -314,6 +314,7 @@ var/mob/living/carbon/human/Pred = owner if(ishuman(M)) var/mob/living/carbon/human/Prey = M + Prey.bloodstr.del_reagent("numbenzyme") Prey.bloodstr.trans_to_holder(Pred.bloodstr, Prey.bloodstr.total_volume, 0.5, TRUE) // Copy=TRUE because we're deleted anyway Prey.ingested.trans_to_holder(Pred.bloodstr, Prey.ingested.total_volume, 0.5, TRUE) // Therefore don't bother spending cpu Prey.touching.trans_to_holder(Pred.bloodstr, Prey.touching.total_volume, 0.5, TRUE) // On updating the prey's reagents @@ -465,7 +466,7 @@ owner << "You feel your [name] start to cling onto its contents..." digest_mode = DM_ABSORB return - + else if(prob(digestchance) && digest_mode != DM_ITEMWEAK && digest_mode != DM_DIGEST) //Finally, let's see if it should run the digest chance. R << "In response to your struggling, \the [name] begins to get more active..." owner << "You feel your [name] beginning to become active!"