Final walkthrough tweaks

This commit is contained in:
Mbucari 2023-03-28 14:06:28 -06:00
parent e365ba7296
commit 3681c0f18f
7 changed files with 32 additions and 10 deletions

View file

@ -192,7 +192,7 @@ namespace LibationFileManager
}
[Description("Indicates that this is the first time Libation has been run")]
public bool FirstLaunch { get => true; set => SetNonString(value); }
public bool FirstLaunch { get => GetNonString(defaultValue: true); set => SetNonString(value); }
[Description("When liberating books and there is an error, Libation should:")]
public BadBookAction BadBook { get => GetNonString(defaultValue: BadBookAction.Ask); set => SetNonString(value); }