Added new options for visibilties on nameplate.

This commit is contained in:
CakeAndBanana
2025-10-06 05:29:54 +02:00
parent 49e5fb9d8d
commit ca70c622bc
6 changed files with 47 additions and 6 deletions

View File

@@ -158,6 +158,7 @@ internal class ContextMenuService : IHostedService
_logger.LogError(ex, "Error sending pair request.");
}
}
private HashSet<ulong> VisibleUserIds => [.. _pairManager.GetOnlineUserPairs()
.Where(u => u.IsVisible && u.PlayerCharacterId != uint.MaxValue)
.Select(u => (ulong)u.PlayerCharacterId)];