Make PreventRandomc figurable, clean up logic

Will no longer hold design reference or make redundant copy of list
This commit is contained in:
Diorik 2025-02-06 12:49:23 -06:00
parent 45981f2fee
commit 67fd65d366
3 changed files with 13 additions and 8 deletions

View file

@ -109,6 +109,9 @@ public class SettingsTab(
Checkbox("Use Temporary Mod Settings",
"Apply all settings as temporary settings so they will be reset when Glamourer or the game shut down.", config.UseTemporarySettings,
v => config.UseTemporarySettings = v);
Checkbox("Prevent Random Design Repeats",
"When using random designs, prevent the same design from being chosen twice in a row.",
config.PreventRandomRepeats, v => config.PreventRandomRepeats = v);
ImGui.NewLine();
}