Example #1
0
        public static void AddCommands(out CommandList commands, LevelPermission perm)
        {
            commands = new CommandList();

            foreach (rankAllowance aV in allowedCommands)
                if ((aV.lowestRank <= perm && !aV.disallow.Contains(perm)) || aV.allow.Contains(perm)) commands.Add(Command.all.Find(aV.commandName));
        }
Example #2
0
 public void fillCommands()
 {
     CommandList _commands = new CommandList();
     GrpCommands.AddCommands(out _commands, Permission);
     commands = _commands;
 }