mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
[MIRROR] Make the belly Visibility pref a client one as opposed to a per-character one. (#10467)
Co-authored-by: eghughguhhhhhh <Hawoogabooga@gmail.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
bfbcf946eb
commit
d00cd1e398
34
code/modules/client/preferences/types/game/adult.dm
Normal file
34
code/modules/client/preferences/types/game/adult.dm
Normal file
@@ -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 = FALSE //CHOMPEdit
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user