From a632cf4b65b3bc6b4cdf2e0c74ae198af8c9f556 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Thu, 8 Aug 2019 11:14:27 +0200 Subject: [PATCH] Changing if to use pref flag --- code/modules/vore/eating/living_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 8abf3ee458..dc226414ff 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -385,10 +385,10 @@ return perform_the_nom(user, prey, pred, belly) /mob/living/proc/feed_self_to_grabbed(var/mob/living/user, var/mob/living/pred,var/belly) - //CHOMPEDIT: PROTO TYPE; BELLY SELECTOR + //CHOMPEDIT: AUTO BELLY SELECTOR if (!user.client) for(var/obj/belly/guttoviolate in pred.vore_organs) - if(guttoviolate.name == "stomach" || guttoviolate.name == "belly") + if(guttoviolate.mode_flags & DM_FLAG_ALLOWFORCEFEED) belly = guttoviolate //CHOMPEDIT: END else belly = input("Choose Belly") in pred.vore_organs