From 341520e76696a6bc39204b4f2cf0d45d033520d2 Mon Sep 17 00:00:00 2001 From: Heroman Date: Sun, 29 Sep 2019 18:49:45 +1000 Subject: [PATCH] Makes Melanie's skeleton indigestible --- code/modules/vore/fluffstuff/custom_clothes_vr.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 8cb779a20dd..d85feea3700 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -1900,7 +1900,10 @@ Departamental Swimsuits, for general use if(istype(M,/mob/living/carbon/human)) var/mob/living/carbon/human/H = M - if(!(H.get_species() == SPECIES_PROMETHEAN)) + if(!(H.get_species() == SPECIES_PROMETHEAN)) //Only wearable by slimes, since species_restricted actually checks bodytype, not species return 0 - return 1 \ No newline at end of file + return 1 + +/obj/item/clothing/under/fluff/slime_skeleton/digest_act(var/atom/movable/item_storage = null) + return FALSE //Indigestible \ No newline at end of file