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/API.cs

    r367 r369  
    66                private Web webInstance;
    77               
    8                 public void InitMod () {
     8                public void InitMod (Mod _modInstance) {
    99                        ModEvents.GameStartDone.RegisterHandler (GameStartDone);
    1010                        ModEvents.GameShutdown.RegisterHandler (GameShutdown);
     
    1414                private void GameStartDone () {
    1515                        // ReSharper disable once ObjectCreationAsStatement
     16                        if (!ConnectionManager.Instance.IsServer) {
     17                                return;
     18                        }
     19                       
    1620                        webInstance = new Web ();
    1721                        LogBuffer.Init ();
     
    2327
    2428                private void GameShutdown () {
    25                         webInstance.Shutdown ();
     29                        webInstance?.Shutdown ();
    2630                        MapRendering.MapRendering.Shutdown ();
    2731                }
Note: See TracChangeset for help on using the changeset viewer.