Removed HideGizmoWithRJW setting

This commit is contained in:
amevarashi 2023-03-25 14:17:47 +05:00
parent f363ed6c49
commit 6bb4c091d4
5 changed files with 2 additions and 11 deletions

View File

@ -84,8 +84,6 @@
<RSOption_EnableSexHistory_Desc>* Needs a game restart\n\nEnables Sex History window, information collection for the said window and save/load of this information. Also enables sex partners count in the pawn's records.\n\n[Caution] Disabling this mid save will result in the loss of previously collected histories.</RSOption_EnableSexHistory_Desc>
<RSOption_HideGizmoWhenDrafted_Label>Hide Sex History button when drafted</RSOption_HideGizmoWhenDrafted_Label>
<RSOption_HideGizmoWhenDrafted_Desc>Hides Sex History Gizmo for currently drafted pawns</RSOption_HideGizmoWhenDrafted_Desc>
<RSOption_HideGizmoWithRJW_Label>Hide Sex History button with RJW designators</RSOption_HideGizmoWithRJW_Label>
<RSOption_HideGizmoWithRJW_Desc>Hides Sex History Gizmo if RJW designators are hidden</RSOption_HideGizmoWithRJW_Desc>
<!-- Mod settings: Debug -->
<RSOption_Debug_Label>Debug</RSOption_Debug_Label>

View File

@ -24,7 +24,6 @@ namespace RJWSexperience
public readonly SettingHandle<bool> SlavesBeenRapedExp = new SettingHandle<bool>("SlavesBeenRapedExp", true);
public readonly SettingHandle<bool> EnableSexHistory = new SettingHandle<bool>("EnableSexHistory", true);
public readonly SettingHandle<bool> HideGizmoWhenDrafted = new SettingHandle<bool>("HideGizmoWhenDrafted", true);
public readonly SettingHandle<bool> HideGizmoWithRJW = new SettingHandle<bool>("HideGizmoWithRJW", false);
public readonly SettingHandle<bool> DevMode = new SettingHandle<bool>("DevMode", false);

View File

@ -31,8 +31,7 @@ namespace RJWSexperience.Settings
settings.VirginRatio,
settings.SlavesBeenRapedExp,
settings.EnableSexHistory,
settings.HideGizmoWhenDrafted,
settings.HideGizmoWithRJW
settings.HideGizmoWhenDrafted
}
);
}

View File

@ -21,8 +21,7 @@ namespace RJWSexperience.Settings
settings.VirginRatio,
settings.SlavesBeenRapedExp,
settings.EnableSexHistory,
settings.HideGizmoWhenDrafted,
settings.HideGizmoWithRJW
settings.HideGizmoWhenDrafted
}
) { }
@ -63,7 +62,6 @@ namespace RJWSexperience.Settings
if (settings.EnableSexHistory)
{
listmain.CheckboxLabeled(Keyed.Option_HideGizmoWhenDrafted_Label, settings.HideGizmoWhenDrafted, Keyed.Option_HideGizmoWhenDrafted_Desc);
listmain.CheckboxLabeled(Keyed.Option_HideGizmoWithRJW_Label, settings.HideGizmoWithRJW, Keyed.Option_HideGizmoWithRJW_Desc);
}
if (listmain.ButtonText(Keyed.Button_ResetToDefault))

View File

@ -432,9 +432,6 @@ namespace RJWSexperience.SexHistory
if (Find.Selector.NumSelected > 1)
yield break;
if (SexperienceMod.Settings.HideGizmoWithRJW && !RJWSettings.show_RJW_designation_box)
yield break;
yield return Gizmo;
}