Ignore:
Timestamp:
Nov 9, 2021, 6:28:33 PM (3 years ago)
Author:
alloc
Message:

Preparations for A20 release
Changes usage of "SteamID" to "UserID" in console commands
Also changes a bunch of the WebAPI stuff to show / use UserIDs

File:
1 edited

Legend:

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

    r351 r369  
    22using System.Collections.Generic;
    33using System.Net;
     4using Platform.Steam;
    45
    56namespace AllocsFixes.NetConnections.Servers.Web {
     
    3637                public WebConnection LogIn (ulong _steamId, IPAddress _ip) {
    3738                        string sessionId = Guid.NewGuid ().ToString ();
    38                         WebConnection con = new WebConnection (sessionId, _ip, _steamId);
     39                        PlatformUserIdentifierAbs userId = new UserIdentifierSteam (_steamId);
     40                        WebConnection con = new WebConnection (sessionId, _ip, userId);
    3941                        connections.Add (sessionId, con);
    4042                        return con;
Note: See TracChangeset for help on using the changeset viewer.