1.7.7-alpha-associated-accounts

- Added possibility to view player associated account (by ip)
This commit is contained in:
Dawid Bepierszcz
2025-05-21 03:08:02 +02:00
parent d34ca64970
commit d75a092047
20 changed files with 105 additions and 17 deletions

View File

@@ -26,6 +26,7 @@ public class PlayerInfo(
public int TotalSilences { get; set; } = totalSilences;
public int TotalWarns { get; set; } = totalWarns;
public bool WaitingForKick { get; set; } = false;
public List<(ulong SteamId, string PlayerName)> AccountsAssociated { get; set; } = [];
public DiePosition? DiePosition { get; set; }
}