Expanding preference choices and naming things what they are. (#8696)

* Weh

* forgot one thing

* oops x2

* Update cursed_shit.tsx

* Update examine_tgui.dm
This commit is contained in:
Useroth
2021-10-08 23:23:58 -04:00
committed by GitHub
parent ecfb1881c2
commit 39efec0df7
3 changed files with 7 additions and 7 deletions
@@ -50,8 +50,8 @@
var/e_prefs_nc = preferences.read_preference(/datum/preference/choiced/erp_status_nc)
var/e_prefs_v = preferences.read_preference(/datum/preference/choiced/erp_status_v)
ooc_notes += "ERP: [e_prefs]\n"
ooc_notes += "Non-conforming - [e_prefs_nc]\n"
ooc_notes += "VR - [e_prefs_v]\n"
ooc_notes += "Non-Con: [e_prefs_nc]\n"
ooc_notes += "Vore: [e_prefs_v]\n"
ooc_notes += "\n"
ooc_notes += holder.dna.features["ooc_notes"]
@@ -68,7 +68,7 @@
savefile_key = "erp_status_pref"
/datum/preference/choiced/erp_status/init_possible_values()
return list("Yes", "Ask", "Check OOC", "No")
return list("Yes - Switch", "Yes - Sub", "Yes - Dom", "Check OOC", "Ask", "No")
/datum/preference/choiced/erp_status/create_default_value()
return "Ask"
@@ -98,7 +98,7 @@
savefile_key = "erp_status_pref_nc"
/datum/preference/choiced/erp_status_nc/init_possible_values()
return list("Yes", "Ask", "No")
return list("Yes - Switch", "Yes - Sub", "Yes - Dom", "Check OOC", "Ask", "No")
/datum/preference/choiced/erp_status_nc/create_default_value()
return "Ask"
@@ -128,7 +128,7 @@
savefile_key = "erp_status_pref_v"
/datum/preference/choiced/erp_status_v/init_possible_values()
return list("Yes", "Ask", "No")
return list("Yes - Switch", "Yes - Prey", "Yes - Pred", "Check OOC", "Ask", "No")
/datum/preference/choiced/erp_status_v/create_default_value()
return "Ask"
@@ -121,11 +121,11 @@ export const erp_status_pref: FeatureChoiced = {
};
export const erp_status_pref_nc: FeatureChoiced = {
name: "ERP Non-conforming Status",
name: "ERP Non-Con Status",
component: FeatureDropdownInput,
};
export const erp_status_pref_v: FeatureChoiced = {
name: "ERP VR Status",
name: "ERP Vore Status",
component: FeatureDropdownInput,
};