- Timestamp:
- Jun 12, 2023, 3:21:34 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs
r420 r446 32 32 33 33 if (listOffline || p.IsOnline) { 34 if (bViewAll || p. PlatformId.Equals (userId)) {34 if (bViewAll || p.InternalId.Equals (userId)) { 35 35 JSONObject pos = new JSONObject (); 36 36 pos.Add ("x", new JSONNumber (p.LastPosition.x)); … … 39 39 40 40 JSONObject pJson = new JSONObject (); 41 pJson.Add ("steamid", new JSONString (kvp.Key.CombinedString)); 41 pJson.Add ("steamid", new JSONString (kvp.Value.PlatformId.CombinedString)); 42 pJson.Add ("crossplatformid", new JSONString (kvp.Value.CrossPlatformId?.CombinedString ?? "")); 42 43 43 44 // pJson.Add("entityid", new JSONNumber (p.EntityID));
Note:
See TracChangeset
for help on using the changeset viewer.