Ignore:
Timestamp:
Jul 19, 2014, 1:17:49 PM (10 years ago)
Author:
alloc
Message:

fixes

Location:
binary-improvements/7dtd-server-fixes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/AdminToolsStuff.cs

    r84 r86  
    1111                List<string> allowed = new List<string> ();
    1212
     13                ConsoleSdtd console = ConnectionManager.Instance.gameManager.m_GUIConsole;
     14
    1315                foreach (AdminToolsCommandPermissions atcp in perms) {
    1416                        if (tmpInfo.SteamID != null && tmpInfo.SteamID.Length > 0) {
    1517                                if ((atcp.PermissionLevel >= tmpInfo.PermissionLevel) || (atcp.PermissionLevel >= 1000)) {
    16                                         allowed.Add (atcp.Command);
     18                                        addAllowed (console, allowed, atcp.Command);
    1719                                }
    1820                        } else {
    1921                                if (atcp.PermissionLevel >= 1000) {
    20                                         allowed.Add (atcp.Command);
     22                                        addAllowed (console, allowed, atcp.Command);
    2123                                }
    2224                        }
     
    2527                return allowed.ToArray ();
    2628        }
     29
     30        private static void addAllowed (ConsoleSdtd console, List<string> list, string cmd)
     31        {
     32                ConsoleCommand cc = console.getCommand (cmd);
     33                if (cc != null) {
     34                        foreach (string ccName in cc.Names()) {
     35                                if (!list.Contains (ccName)) {
     36                                        list.Add (ccName);
     37                                }
     38                        }
     39                } else {
     40                        list.Add (cmd);
     41                }
     42        }
    2743}
    2844
Note: See TracChangeset for help on using the changeset viewer.