Ignore:
Timestamp:
Jan 27, 2025, 4:29:28 PM (3 days ago)
Author:
alloc
Message:

Compatibility fixes for 2.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TFP-WebServer/WebServer/src/ModApi.cs

    r500 r503  
    1818                }
    1919
    20                 private void GameStartDone () {
     20                private ModEvents.EModEventResult GameStartDone (ref ModEvents.SGameStartDoneData _data) {
    2121                        if (!ConnectionManager.Instance.IsServer) {
    22                                 return;
     22                                return ModEvents.EModEventResult.Continue;
    2323                        }
    2424                       
     
    2929                                ItemIconHandler.Instance.LoadIcons ();
    3030                        }
     31
     32                        return ModEvents.EModEventResult.Continue;
    3133                }
    3234
    33                 private void WorldShuttingDown () {
     35                private ModEvents.EModEventResult WorldShuttingDown (ref ModEvents.SWorldShuttingDownData _data) {
    3436                        webInstance?.Disconnect ();
     37
     38                        return ModEvents.EModEventResult.Continue;
    3539                }
    3640        }
Note: See TracChangeset for help on using the changeset viewer.