From 1ebdc06d59e82ae36638253f83bcdbe5bde7d021 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Wed, 7 Jul 2021 17:02:05 -0400 Subject: [PATCH] Protects Poppy and chicks from being vored Continuing pet and baby protections. You can still kill chicks to get meat from them or whatever, you just can't be horny with them --- code/modules/mob/living/simple_mob/donteatpets_vr.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/mob/living/simple_mob/donteatpets_vr.dm b/code/modules/mob/living/simple_mob/donteatpets_vr.dm index 3690f6199b..057373b4c7 100644 --- a/code/modules/mob/living/simple_mob/donteatpets_vr.dm +++ b/code/modules/mob/living/simple_mob/donteatpets_vr.dm @@ -24,6 +24,10 @@ digestable = 0 devourable = 0 +/mob/living/simple_mob/animal/passive/opossum/poppy + digestable = 0 + devourable = 0 + /mob/living/carbon/human/monkey/punpun digestable = 0 devourable = 0 @@ -48,5 +52,9 @@ devourable = 0 /mob/living/simple_mob/slime/xenobio/rainbow/kendrick + digestable = 0 + devourable = 0 + +/mob/living/simple_mob/animal/passive/chick digestable = 0 devourable = 0 \ No newline at end of file