From 1ad25e5cdbbba13fcd8201e900212c50453688c6 Mon Sep 17 00:00:00 2001 From: Razgriz Date: Thu, 19 Nov 2020 01:47:09 -0700 Subject: [PATCH] Mouse spontaneous vore changes For mice, I changed the following: Allowed for being spontaneous prey. Disallowed for being spontaneous predator. --- .../mob/living/simple_mob/subtypes/animal/passive/mouse.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm index e8d8f56198..22e57ca683 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm @@ -39,6 +39,9 @@ var/body_color //brown, gray and white, leave blank for random + //CHOMP Addition: Added these vore variables in and swapped the booleans from their defaults too. + can_be_drop_prey = TRUE + can_be_drop_pred = FALSE /mob/living/simple_mob/animal/passive/mouse/New() ..()