From b5b033e43e3d83cec69a15cb1cd70c2b7ccb4cfe Mon Sep 17 00:00:00 2001 From: SandPoot <43283559+SandPoot@users.noreply.github.com> Date: Fri, 16 Jul 2021 15:07:11 -0300 Subject: [PATCH] Update bellymodes.dm oops --- code/modules/vore/eating/bellymodes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/bellymodes.dm b/code/modules/vore/eating/bellymodes.dm index 3db66050db..8d64ee28f1 100644 --- a/code/modules/vore/eating/bellymodes.dm +++ b/code/modules/vore/eating/bellymodes.dm @@ -150,7 +150,7 @@ SEND_SOUND(M,prey_digest) play_sound = pick(pred_digest) - if(M.vore_flags & ABSORBED || M.vore_flags & ABSORBABLE) //Negative. + if(M.vore_flags & ABSORBED || !(M.vore_flags & ABSORBABLE)) //Negative. continue if(M.nutrition >= 100) //Drain them until there's no nutrients left. Slowly "absorb" them.