diff --git a/code/modules/mob/living/simple_animal/simple_animal_vr.dm b/code/modules/mob/living/simple_animal/simple_animal_vr.dm index 2d225b649a..146b613060 100644 --- a/code/modules/mob/living/simple_animal/simple_animal_vr.dm +++ b/code/modules/mob/living/simple_animal/simple_animal_vr.dm @@ -2,6 +2,7 @@ // List of targets excluded (for now) from being eaten by this mob. var/list/prey_exclusions = list() devourable = FALSE //insurance because who knows. + digestable = TRUE //I mean, if it's devourable it should also be digestible var/vore_active = FALSE // If vore behavior is enabled for this mob var/vore_default_mode = DM_DIGEST // Default bellymode (DM_DIGEST, DM_HOLD, DM_ABSORB) diff --git a/modular_citadel/code/modules/vore/eating/living_vr.dm b/modular_citadel/code/modules/vore/eating/living_vr.dm index 5ffaabe8bc..d308f2c1bc 100644 --- a/modular_citadel/code/modules/vore/eating/living_vr.dm +++ b/modular_citadel/code/modules/vore/eating/living_vr.dm @@ -1,6 +1,6 @@ ///////////////////// Mob Living ///////////////////// /mob/living - var/digestable = TRUE // Can the mob be digested inside a belly? + var/digestable = FALSE // Can the mob be digested inside a belly? var/obj/belly/vore_selected // Default to no vore capability. var/list/vore_organs = list() // List of vore containers inside a mob var/devourable = FALSE // Can the mob be vored at all?