mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 21:27:21 +01:00
add show notes instead of names
This commit is contained in:
parent
5b52896243
commit
4c88e0e249
5 changed files with 24 additions and 3 deletions
|
|
@ -142,6 +142,14 @@ public class UidDisplayHandler
|
|||
{
|
||||
playerText = pair.PlayerName;
|
||||
textIsUid = false;
|
||||
if (_mareConfigService.Current.PreferNotesOverNamesForVisible)
|
||||
{
|
||||
var note = pair.GetNote();
|
||||
if (note != null)
|
||||
{
|
||||
playerText = note;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return (textIsUid, playerText!);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue