Skip to content

Commit

Permalink
fix hidden abnormalities not being displayed in config window
Browse files Browse the repository at this point in the history
  • Loading branch information
foglio1024 committed Jan 26, 2024
1 parent d64fcf8 commit 0400b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TCC.Core/ViewModels/MyAbnormalConfigVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public MyAbnormalConfigVM()
var myAbnormals = new ThreadSafeObservableCollection<MyAbnormalityVM>(_dispatcher);
foreach (var abnormality in Game.DB!.AbnormalityDatabase.Abnormalities.Values.Where(a => a is { IsShow: true, CanShow: true }))
{
var abVM = new MyAbnormalityVM(abnormality);
var abVM = new MyAbnormalityVM(abnormality) { Hidden = App.Settings.BuffWindowSettings.Hidden.Contains(abnormality.Id) };
myAbnormals.Add(abVM);
}

Expand Down

0 comments on commit 0400b88

Please sign in to comment.