Ignore:
Timestamp:
Jun 12, 2023, 3:21:34 PM (17 months ago)
Author:
alloc
Message:

24_27_41

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/API/GetPlayerList.cs

    r420 r446  
    4949                                Player p = kvp.Value;
    5050
    51                                 if (bViewAll || p.PlatformId.Equals (userId)) {
     51                                if (bViewAll || p.InternalId.Equals (userId)) {
    5252                                        JSONObject pos = new JSONObject ();
    5353                                        pos.Add ("x", new JSONNumber (p.LastPosition.x));
     
    5656
    5757                                        JSONObject pJson = new JSONObject ();
    58                                         pJson.Add ("steamid", new JSONString (kvp.Key.CombinedString));
     58                                        pJson.Add ("steamid", new JSONString (kvp.Value.PlatformId.CombinedString));
     59                                        pJson.Add ("crossplatformid", new JSONString (kvp.Value.CrossPlatformId?.CombinedString ?? ""));
    5960                                        pJson.Add ("entityid", new JSONNumber (p.EntityID));
    6061                                        pJson.Add ("ip", new JSONString (p.IP));
Note: See TracChangeset for help on using the changeset viewer.