show_map option and retries

This commit is contained in:
2026-01-17 13:08:15 -06:00
parent fe33bd83b0
commit 24a8613ea0
4 changed files with 21 additions and 3 deletions

View File

@@ -92,6 +92,11 @@
[NoSettingName([Apr2025, Base])]
public ShowLoot ShowLoot { get; set; } = ShowLoot.Never;
[SettingName("showmap")]
[RequiredSetting([Apr2025, Base], ShowMap.Map)]
[NoSettingName([Apr2025, Base])]
public ShowMap ShowMap { get; set; } = ShowMap.Map;
[NoSettingName]
[RequiredSetting([Apr2025], ShopShuffle.Vanilla)]
public ShopShuffle ShopShuffle { get; set; } = ShopShuffle.Vanilla;
@@ -322,10 +327,17 @@
public enum ShowLoot {
Never,
Presence,
Compass,
Always,
}
public enum ShowMap {
Visited,
Map,
Always,
}
public enum BootsSettings {
Normal,
[AdditionalSetting("--pseudoboots")] Pseudoboots,