mirror of
https://gitgud.io/AbstractConcept/privacy-please.git
synced 2024-08-15 00:03:18 +00:00
Updates and bug fixes
This commit is contained in:
parent
299934584e
commit
2256f28cf8
15 changed files with 74 additions and 64 deletions
|
@ -25,6 +25,9 @@ namespace Privacy_Please
|
|||
public static bool ignoreRitualAndPartySex = true;
|
||||
public static bool slavesIgnoreSex = false;
|
||||
public static bool otherFactionsIgnoreSex = false;
|
||||
public static bool copulatorsIgnoreSlaves = false;
|
||||
public static bool copulatorsIgnoreOtherFactions = false;
|
||||
|
||||
public static bool rapeIsUninteruptable = true;
|
||||
public static bool whoringIsUninteruptable = true;
|
||||
|
||||
|
@ -49,6 +52,8 @@ namespace Privacy_Please
|
|||
Scribe_Values.Look(ref ignoreRitualAndPartySex, "ignoreRitualAndPartySex", false);
|
||||
Scribe_Values.Look(ref slavesIgnoreSex, "slavesIgnoreSex", false);
|
||||
Scribe_Values.Look(ref otherFactionsIgnoreSex, "otherFactionsIgnoreSex", false);
|
||||
Scribe_Values.Look(ref copulatorsIgnoreSlaves, "copulatorsIgnoreSlaves", false);
|
||||
Scribe_Values.Look(ref copulatorsIgnoreOtherFactions, "copulatorsIgnoreOtherFactions", false);
|
||||
Scribe_Values.Look(ref rapeIsUninteruptable, "slavesIgnoreSex", true);
|
||||
Scribe_Values.Look(ref whoringIsUninteruptable, "otherFactionsIgnoreSex", true);
|
||||
Scribe_Values.Look(ref underwearSufficentForIdeos, "underwearSufficentForIdeos", true);
|
||||
|
@ -109,6 +114,8 @@ namespace Privacy_Please
|
|||
listingStandard.CheckboxLabeled("ignore_ritual_and_party_sex".Translate(), ref BasicSettings.ignoreRitualAndPartySex, "ignore_ritual_and_party_sex_desc".Translate());
|
||||
listingStandard.CheckboxLabeled("slaves_ignore_sex".Translate(), ref BasicSettings.slavesIgnoreSex, "slaves_ignore_sex_desc".Translate());
|
||||
listingStandard.CheckboxLabeled("other_factions_ignore_sex".Translate(), ref BasicSettings.otherFactionsIgnoreSex, "other_factions_ignore_sex_desc".Translate());
|
||||
listingStandard.CheckboxLabeled("copulators_ignore_slaves".Translate(), ref BasicSettings.copulatorsIgnoreSlaves, "copulators_ignore_slaves_desc".Translate());
|
||||
listingStandard.CheckboxLabeled("copulators_ignore_other_factions".Translate(), ref BasicSettings.copulatorsIgnoreOtherFactions, "copulators_ignore_other_factions_desc".Translate());
|
||||
listingStandard.CheckboxLabeled("major_taboo_can_start_fights".Translate(), ref BasicSettings.majorTabooCanStartFights, "major_taboo_can_start_fights_desc".Translate());
|
||||
listingStandard.CheckboxLabeled("rape_is_uninteruptable".Translate(), ref BasicSettings.rapeIsUninteruptable, "rape_is_uninteruptable_desc".Translate());
|
||||
listingStandard.CheckboxLabeled("whoring_is_uninteruptable".Translate(), ref BasicSettings.whoringIsUninteruptable, "whoring_is_uninteruptable".Translate());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue