mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Fix issue with collection count being wrong.
This commit is contained in:
parent
52efacacd7
commit
b5f20c0ec8
1 changed files with 1 additions and 1 deletions
|
|
@ -218,7 +218,7 @@ public class Penumbra : IDalamudPlugin
|
||||||
sb.AppendLine("**Collections**");
|
sb.AppendLine("**Collections**");
|
||||||
sb.Append($"> **`#Collections: `** {_collectionManager.Storage.Count - 1}\n");
|
sb.Append($"> **`#Collections: `** {_collectionManager.Storage.Count - 1}\n");
|
||||||
sb.Append($"> **`#Temp Collections: `** {_tempCollections.Count}\n");
|
sb.Append($"> **`#Temp Collections: `** {_tempCollections.Count}\n");
|
||||||
sb.Append($"> **`Active Collections: `** {_collectionManager.Caches.Count - _tempCollections.Count}\n");
|
sb.Append($"> **`Active Collections: `** {_collectionManager.Caches.Count}\n");
|
||||||
sb.Append($"> **`Base Collection: `** {_collectionManager.Active.Default.AnonymizedName}\n");
|
sb.Append($"> **`Base Collection: `** {_collectionManager.Active.Default.AnonymizedName}\n");
|
||||||
sb.Append($"> **`Interface Collection: `** {_collectionManager.Active.Interface.AnonymizedName}\n");
|
sb.Append($"> **`Interface Collection: `** {_collectionManager.Active.Interface.AnonymizedName}\n");
|
||||||
sb.Append($"> **`Selected Collection: `** {_collectionManager.Active.Current.AnonymizedName}\n");
|
sb.Append($"> **`Selected Collection: `** {_collectionManager.Active.Current.AnonymizedName}\n");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue