Ignore:
Timestamp:
Mar 28, 2023, 5:11:02 PM (20 months ago)
Author:
alloc
Message:

A21 preparations.
NOT COMPATIBLE WITH A20 ANYMORE!

Location:
binary-improvements/MapRendering/Web/API
Files:
5 edited

Legend:

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

    r360 r420  
    3131                        }
    3232
    33                         int commandPermissionLevel = GameManager.Instance.adminTools.GetCommandPermissionLevel (command.GetCommands ());
     33                        int commandPermissionLevel = GameManager.Instance.adminTools.Commands.GetCommandPermissionLevel (command.GetCommands ());
    3434
    3535                        if (_permissionLevel > commandPermissionLevel) {
  • binary-improvements/MapRendering/Web/API/GetAllowedCommands.cs

    r360 r420  
    99                        JSONArray entries = new JSONArray ();
    1010                        foreach (IConsoleCommand cc in SdtdConsole.Instance.GetCommands ()) {
    11                                 int commandPermissionLevel = GameManager.Instance.adminTools.GetCommandPermissionLevel (cc.GetCommands ());
     11                                int commandPermissionLevel = GameManager.Instance.adminTools.Commands.GetCommandPermissionLevel (cc.GetCommands ());
    1212                                if (_permissionLevel <= commandPermissionLevel) {
    1313                                        string cmd = string.Empty;
  • binary-improvements/MapRendering/Web/API/GetLandClaims.cs

    r369 r420  
    2323
    2424                        JSONObject result = new JSONObject ();
    25                         result.Add ("claimsize", new JSONNumber (GamePrefs.GetInt (EnumUtils.Parse<EnumGamePrefs> ("LandClaimSize"))));
     25                        result.Add ("claimsize", new JSONNumber (GamePrefs.GetInt (EnumUtils.Parse<EnumGamePrefs> (nameof(EnumGamePrefs.LandClaimSize)))));
    2626
    2727                        JSONArray claimOwners = new JSONArray ();
  • binary-improvements/MapRendering/Web/API/GetPlayerList.cs

    r369 r420  
    6868                                        pJson.Add ("ping", new JSONNumber (p.IsOnline ? p.ClientInfo.ping : -1));
    6969
    70                                         JSONBoolean banned = admTools != null ? new JSONBoolean (admTools.IsBanned (kvp.Key, out _, out _)) : new JSONBoolean (false);
     70                                        JSONBoolean banned = admTools != null ? new JSONBoolean (admTools.Blacklist.IsBanned (kvp.Key, out _, out _)) : new JSONBoolean (false);
    7171
    7272                                        pJson.Add ("banned", banned);
  • binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs

    r369 r420  
    2424                        foreach (KeyValuePair<PlatformUserIdentifierAbs, Player> kvp in playersList.Dict) {
    2525                                if (admTools != null) {
    26                                         if (admTools.IsBanned (kvp.Key, out _, out _)) {
     26                                        if (admTools.Blacklist.IsBanned (kvp.Key, out _, out _)) {
    2727                                                continue;
    2828                                        }
Note: See TracChangeset for help on using the changeset viewer.