Make the belly Visibility pref a client one as opposed to a per-character one. (#17375)

* Automatic changelog compile [ci skip]

* Make Belly pref global as opposed to per-character

---------

Co-authored-by: vorestation-ci[bot] <199609141+vorestation-ci[bot]@users.noreply.github.com>
This commit is contained in:
eghughguhhhhhh
2025-03-18 20:44:40 -03:00
committed by GitHub
parent 46a3d2a9b6
commit dfeaa5f5ed
13 changed files with 77 additions and 70 deletions
@@ -0,0 +1,34 @@
/datum/preference/toggle/tummy_sprites
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "VISIBLE_TUMMIES"
savefile_identifier = PREFERENCE_PLAYER
default_value = TRUE //it IS a vore server
/datum/preference/toggle/tummy_sprites/apply_to_client_updated(client/client, value)
client.mob.recalculate_vis()
. = ..()
// Vorey sounds
/datum/preference/toggle/belch_noises // Belching noises - pref toggle for 'em
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "BELCH_NOISES"
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
/datum/preference/toggle/eating_noises
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "EATING_NOISES"
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
/datum/preference/toggle/digestion_noises
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "DIGEST_NOISES"
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
/datum/preference/toggle/vore_health_bars
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "VORE_HEALTH_BARS"
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
@@ -44,12 +44,6 @@
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
/datum/preference/toggle/vore_health_bars
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "VORE_HEALTH_BARS"
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
/datum/preference/toggle/show_lore_news
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "NEWS_POPUP"
@@ -129,25 +129,6 @@
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
// Vorey sounds
/datum/preference/toggle/belch_noises // Belching noises - pref toggle for 'em
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "BELCH_NOISES"
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
/datum/preference/toggle/eating_noises
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "EATING_NOISES"
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
/datum/preference/toggle/digestion_noises
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "DIGEST_NOISES"
default_value = TRUE
savefile_identifier = PREFERENCE_PLAYER
/datum/preference/numeric/ambience_freq
category = PREFERENCE_CATEGORY_GAME_PREFERENCES
savefile_key = "ambience_freq"