Ignore:
Timestamp:
Aug 23, 2020, 9:52:01 AM (4 years ago)
Author:
alloc
Message:

A19 code

Location:
binary-improvements
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements

    • Property svn:ignore
      •  

        old new  
        11bin
         2.idea
  • binary-improvements/MapRendering/Web/API/ExecuteConsoleCommand.cs

    r351 r360  
    3131                        }
    3232
    33                         AdminToolsCommandPermissions atcp =
    34                                 GameManager.Instance.adminTools.GetAdminToolsCommandPermission (command.GetCommands ());
     33                        int commandPermissionLevel = GameManager.Instance.adminTools.GetCommandPermissionLevel (command.GetCommands ());
    3534
    36                         if (_permissionLevel > atcp.PermissionLevel) {
     35                        if (_permissionLevel > commandPermissionLevel) {
    3736                                _resp.StatusCode = (int) HttpStatusCode.Forbidden;
    3837                                Web.SetResponseTextContent (_resp, "You are not allowed to execute this command");
  • binary-improvements/MapRendering/Web/API/GetAllowedCommands.cs

    r351 r360  
    99                        JSONArray entries = new JSONArray ();
    1010                        foreach (IConsoleCommand cc in SdtdConsole.Instance.GetCommands ()) {
    11                                 AdminToolsCommandPermissions atcp =
    12                                         GameManager.Instance.adminTools.GetAdminToolsCommandPermission (cc.GetCommands ());
    13                                 if (_permissionLevel <= atcp.PermissionLevel) {
     11                                int commandPermissionLevel = GameManager.Instance.adminTools.GetCommandPermissionLevel (cc.GetCommands ());
     12                                if (_permissionLevel <= commandPermissionLevel) {
    1413                                        string cmd = string.Empty;
    1514                                        foreach (string s in cc.GetCommands ()) {
  • binary-improvements/MapRendering/Web/API/GetServerInfo.cs

    r351 r360  
    99                        JSONObject serverInfo = new JSONObject ();
    1010
    11                         GameServerInfo gsi = Steam.Masterserver.Server.LocalGameInfo;
     11                        GameServerInfo gsi = ConnectionManager.Instance.LocalServerInfo;
    1212
    1313                        foreach (string stringGamePref in Enum.GetNames (typeof (GameInfoString))) {
Note: See TracChangeset for help on using the changeset viewer.