From b173948b173701381f6bb8b6ecad8a857325e4e3 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Mon, 7 Oct 2019 04:59:14 -0700 Subject: [PATCH] Removed shit opinion Removed a stanza that prevented some flexibility with the digestion for mobs, and also the returned comment was highly unprofessional. You can now toggle the digestion mode on simple animals. You will be warned that using this to break OOC prefs is against the rules before doing so. Right click the mob and toggle their digestion. --- code/modules/vore/eating/simple_animal_vr.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/vore/eating/simple_animal_vr.dm b/code/modules/vore/eating/simple_animal_vr.dm index e8fd6390ed..8a2334077f 100644 --- a/code/modules/vore/eating/simple_animal_vr.dm +++ b/code/modules/vore/eating/simple_animal_vr.dm @@ -34,9 +34,12 @@ var/mob/living/carbon/human/user = usr if(!istype(user) || user.stat) return +//ChompStation edit: This prevented some flexibility with mob vore and the returned message was highly unprofessional. +/* if(retaliate || (hostile && faction != user.faction)) user << "This predator isn't friendly, and doesn't give a shit about your opinions of it digesting you." return +*/ if(vore_selected.digest_mode == DM_HOLD) var/confirm = alert(user, "Enabling digestion on [name] will cause it to digest all stomach contents. Using this to break OOC prefs is against the rules. Digestion will reset after 20 minutes.", "Enabling [name]'s Digestion", "Enable", "Cancel") if(confirm == "Enable")