This commit is contained in:
BongaTheProto
2023-10-08 02:33:47 -05:00
parent 7b5ecc7b49
commit 0770dfc412
11 changed files with 36 additions and 18 deletions
+4
View File
@@ -233,6 +233,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
"vag_accessible" = FALSE,
"butt_accessible" = FALSE,
"anus_accessible" = FALSE,
"belly_accessible" = FALSE,
"cock_stuffing" = FALSE,
"balls_stuffing" = FALSE,
"vag_stuffing" = FALSE,
@@ -995,6 +996,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
dat += "<b>Min Size:</b><a style='display:block;width:50px' href='?_src_=prefs;preference=belly_min_size;task=input'>[features["belly_min_size"] ? features["belly_min_size"] : "Disabled" ]</a>"
dat += "<b>Belly Visibility:</b><a style='display:block;width:100px' href='?_src_=prefs;preference=belly_visibility;task=input'>[features["belly_visibility"]]</a>"
dat += "<b>Egg Stuffing:</b><a style='display:block;width:50px' href='?_src_=prefs;preference=belly_stuffing'>[features["belly_stuffing"] == TRUE ? "Yes" : "No"]</a>"
dat += "<b>Belly Always Accessible:</b><a style='display:block;width:100px' href='?_src_=prefs;preference=belly_accessible'>[features["belly_accessible"] ? "Yes" : "No"]</a>"
dat += "</td>"
if(all_quirks.Find("Dullahan"))
dat += APPEARANCE_CATEGORY_COLUMN
@@ -3452,6 +3454,8 @@ GLOBAL_LIST_EMPTY(preferences_datums)
features["butt_accessible"] = !features["butt_accessible"]
if("anus_accessible")
features["anus_accessible"] = !features["anus_accessible"]
if("belly_accessible")
features["belly_accessible"] = !features["belly_accessible"]
if("widescreenpref")
widescreenpref = !widescreenpref
user.client.view_size.setDefault(getScreenSize(widescreenpref))
@@ -842,6 +842,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
"vag_accessible" = FALSE,
"butt_accessible" = FALSE,
"anus_accessible" = FALSE,
"belly_accessible" = FALSE,
"inert_eggs" = FALSE,
"ipc_screen" = "Sunburst",
"ipc_antenna" = "None",
@@ -1042,6 +1043,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
S["feature_belly_size"] >> features["belly_size"]
S["feature_belly_color"] >> features["belly_color"]
S["feature_belly_visibility"] >> features["belly_visibility"]
S["feature_belly_accessible"] >> features["belly_accessible"]
//anus features
S["feature_has_anus"] >> features["has_anus"]
S["feature_anus_color"] >> features["anus_color"]
@@ -1456,6 +1458,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
WRITE_FILE(S["feature_belly_size"], features["belly_size"])
WRITE_FILE(S["feature_belly_visibility"], features["belly_visibility"])
WRITE_FILE(S["feature_belly_stuffing"], features["belly_stuffing"])
WRITE_FILE(S["feature_belly_accessible"], features["belly_accessible"])
WRITE_FILE(S["feature_has_anus"], features["has_anus"])
WRITE_FILE(S["feature_anus_color"], features["anus_color"])