ShowLootHud setting

This commit is contained in:
2026-05-04 09:04:17 -05:00
parent 6fef1e10ef
commit 38c166f63a
3 changed files with 16 additions and 5 deletions

View File

@@ -99,6 +99,10 @@
[IgnoreSetting(Apr2025)]
public ShowLoot ShowLoot { get; set; } = ShowLoot.Never;
[SettingName("loothud")]
[IgnoreSetting(Apr2025, Base)]
public ShowLootHud ShowLootHud { get; set; } = ShowLootHud.Never;
[SettingName("showmap")]
[IgnoreSetting(Apr2025)]
public ShowMap ShowMap { get; set; } = ShowMap.Map;
@@ -408,6 +412,13 @@
Always,
}
public enum ShowLootHud {
Never,
Presence,
Value,
[SettingName("dungeon_value")] DungeonValue,
}
public enum ShowMap {
Visited,
Map,