Permissions

Discussion in 'Rust Development' started by KillParadise, Apr 27, 2015.

  1. If I setup a permission in the config and say I do something like this:

    Code:
                                "default": {
                                    "permission": "default"
                                },
                                "donor": {
                                    "permission": "donor"
                                },
                                "mod": {
                                    "permission": "moderator"
                                },
    
    and then say instead of assigning donor permissions through the console over to the mod, could I simply do this:
    Code:
                               "default": {
                                    "permission": "default"
                                },
                                "donor": {
                                    "permission": "donor"
                                },
                                "mod": {
                                    "permission": "moderator, donor"
                                },
    
    Or would that be an incorrect setup? Trying to get as much understanding of this system as I can...