Before 6.4 upgrade

This commit is contained in:
2026-05-13 20:29:56 +01:00
parent 602e1ec0d3
commit 806cf80110
38 changed files with 19990 additions and 16155 deletions

View File

@@ -125,6 +125,11 @@ namespace BriarQueen.Framework.Managers.Player
return _codex?.GetEntriesByType(codexType) ?? Enumerable.Empty<CodexEntrySo>();
}
public bool AnyCodexEntriesForCategory(CodexType codexType)
{
return _codex != null && GetDiscoveredCodexEntriesByType(codexType).Any();
}
public bool HasCodexEntry(string uniqueIdentifier)
{
return _codex != null && _codex.HasEntry(uniqueIdentifier);