ACTUALLY updates the preferences

I missed a couple important places.
This commit is contained in:
VerySoft
2022-04-18 17:14:27 -04:00
parent a1c0ece7a9
commit f808da1be9

View File

@@ -56,9 +56,9 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
var/permit_healbelly = TRUE
// These are 'modifier' prefs, do nothing on their own but pair with drop_prey/drop_pred settings.
var/drop_vore = FALSE
var/stumble_vore = FALSE
var/slip_vore = FALSE
var/drop_vore = TRUE
var/stumble_vore = TRUE
var/slip_vore = TRUE
var/resizable = TRUE
var/show_vore_fx = TRUE
@@ -186,11 +186,11 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
if(isnull(belly_prefs))
belly_prefs = list()
if(isnull(drop_vore))
drop_vore = FALSE
drop_vore = TRUE
if(isnull(slip_vore))
slip_vore = FALSE
slip_vore = TRUE
if(isnull(stumble_vore))
stumble_vore = FALSE
stumble_vore = TRUE
return TRUE