From 6f95e6e6d3eaa0c45d4bbc8a335031190d6fa9e4 Mon Sep 17 00:00:00 2001 From: killer653 Date: Tue, 10 Jan 2017 21:30:18 -0500 Subject: [PATCH] Fixes #813. Credit to Aronai Fixes #813 --- code/modules/vore/eating/belly_vr.dm | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/code/modules/vore/eating/belly_vr.dm b/code/modules/vore/eating/belly_vr.dm index 0f6e537bcd1..96a101cb77f 100644 --- a/code/modules/vore/eating/belly_vr.dm +++ b/code/modules/vore/eating/belly_vr.dm @@ -427,18 +427,14 @@ else if(prob(absorbchance)) //After that, let's have it run the absorb chance. R << "In responce to your struggling, \the [name] begins to get more active..." owner << "You feel your [name] beginning to become active!" - for(var/K in owner.vore_organs) - var/datum/belly/B = owner.vore_organs[K] - B.digest_mode = DM_ABSORB - return + digest_mode = DM_ABSORB + return else if(prob(digestchance)) //Finally, let's see if it should run the digest chance. R << "In responce to your struggling, \the [name] begins to get more active..." owner << "You feel your [name] beginning to become active!" - for(var/K in owner.vore_organs) - var/datum/belly/B = owner.vore_organs[K] - B.digest_mode = DM_DIGEST - return + digest_mode = DM_DIGEST + return else //Nothing interesting happened. R << "But make no progress in escaping [owner]'s [name]." owner << "But appears to be unable to make any progress in escaping your [name]."