From eed04a1de3430acfd192b0c922ceeb7a00ef1e48 Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Tue, 5 Mar 2019 08:45:04 +0100 Subject: [PATCH] Making Metroids inedible --- code/modules/vore/eating/belly_obj_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index d5c6987d65..03f4e06f95 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -256,7 +256,7 @@ // The purpose of this method is to avoid duplicate code, and ensure that all necessary // steps are taken. /obj/belly/proc/nom_mob(var/mob/prey, var/mob/user) - if(owner.stat == DEAD) + if(owner.stat == DEAD || if(istype(prey,/mob/living/simple_animal/hostile/metroid))) return if (prey.buckled) prey.buckled.unbuckle_mob()