mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
use a map to track ftue levels per-feature instead
This commit is contained in:
parent
ef72ebc72c
commit
08a411728c
2 changed files with 13 additions and 11 deletions
|
|
@ -80,10 +80,9 @@ internal sealed class DalamudConfiguration : IInternalDisposableService
|
|||
public string? LastVersion { get; set; } = null;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating the last seen FTUE version.
|
||||
/// Unused for now, added to prevent existing users from seeing level 0 FTUE.
|
||||
/// Gets or sets a dictionary of seen FTUE levels.
|
||||
/// </summary>
|
||||
public int SeenFtueLevel { get; set; } = 1;
|
||||
public Dictionary<string, int> SeenFtueLevels { get; set; } = new();
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the last loaded Dalamud version.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue