Disabled the pair request on already paired users

This commit is contained in:
CakeAndBanana
2025-10-01 02:47:11 +02:00
parent dea4ef4832
commit e91d163763
3 changed files with 17 additions and 9 deletions

View File

@@ -40,7 +40,6 @@ public class NameplateService : DisposableMediatorSubscriberBase
private void OnNamePlateUpdate(INamePlateUpdateContext context, IReadOnlyList<INamePlateUpdateHandler> handlers)
{
if (!_configService.Current.IsNameplateColorsEnabled || (_configService.Current.IsNameplateColorsEnabled && _clientState.IsPvPExcludingDen))
return;
@@ -78,7 +77,6 @@ public class NameplateService : DisposableMediatorSubscriberBase
public void RequestRedraw()
{
_namePlateGui.RequestRedraw();
}