From 4c78036d431b59124a997c6e50067ab767911516 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Mon, 18 Apr 2022 16:26:29 -0400 Subject: [PATCH] Adjust default prefs Makes it so the stumble/slip/drop vore prefs are on by default, since you have to have the spontaneous vore option enabled for them to work to begin with. Also makes both spontaneous vore options off by default for consistency. (And moves the enabling of the pred option to the simple mob file since that's what that was for anyway) --- code/modules/mob/living/simple_mob/simple_mob_vr.dm | 2 ++ code/modules/vore/eating/living_vr.dm | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm index a5cab0546f..dae0fe6294 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -50,6 +50,8 @@ var/obj/item/device/radio/headset/mob_headset/mob_radio //Adminbus headset for simplemob shenanigans. does_spin = FALSE + can_be_drop_pred = TRUE // Mobs are pred by default. + // Release belly contents before being gc'd! /mob/living/simple_mob/Destroy() diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index b049402836..fdaca89429 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -31,11 +31,11 @@ var/drain_finalized = 0 // Determines if the succubus drain will be KO'd/absorbed. Can be toggled on at any time. var/fuzzy = 0 // Preference toggle for sharp/fuzzy icon. var/permit_healbelly = TRUE - var/stumble_vore = FALSE - var/slip_vore = FALSE - var/drop_vore = FALSE + var/stumble_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway + var/slip_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway + var/drop_vore = TRUE //Enabled by default since you have to enable drop pred/prey to do this anyway var/can_be_drop_prey = FALSE - var/can_be_drop_pred = TRUE // Mobs are pred by default. + var/can_be_drop_pred = FALSE var/allow_spontaneous_tf = FALSE // Obviously. var/next_preyloop // For Fancy sound internal loop var/adminbus_trash = FALSE // For abusing trash eater for event shenanigans.