mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-08 04:01:05 +00:00
RCON Player List Fixes
- fixed player list for EPIC players.
This commit is contained in:
parent
b19626ecd4
commit
1a45d85ff6
8 changed files with 81 additions and 304 deletions
|
|
@ -124,7 +124,8 @@ namespace ServerManagerTool.Lib.ViewModel.RCON
|
|||
if (playerData == null)
|
||||
return;
|
||||
|
||||
playerData.PlayerName = PlayerData?.PlayerName;
|
||||
if (PlayerData?.PlayerName != null)
|
||||
playerData.PlayerName = PlayerData.PlayerName;
|
||||
playerData.LastPlatformUpdateUtc = PlayerData?.LastPlatformUpdateUtc ?? DateTime.MinValue;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue