Problem/Bug No Permissions

Discussion in 'Bukkit Help' started by jakethenormal, Aug 16, 2015.

Thread Status:
Not open for further replies.
  1. Offline

    jakethenormal

    My Permissions file: http://pastebin.com/qSTmHfs6

    I'm having a problem where no one but default appears to have any permissions besides the ability to chat, anyone have a fix?
     
  2. Offline

    lubbs31

    Any errors in the console?

    Also, your spacing is off.
     
  3. Offline

    xDeathBunnyx

    What permissions are you talking about? From what I can see, you need to give them build: 'true'. Also the way you have your permissions nodes set up gives me a headache. http://pastebin.com/cU3nawte
     
  4. Offline

    jakethenormal

    No errors relating to this (some mysql stuff) and can you point out where some of the spacing errors are, no one else seemed to see any and such!
     
  5. Offline

    lubbs31

    Groups are usually two spaces, you have them at four. This might not be a problem, just pointing it out.
     
  6. Offline

    oceantheskatr

    As @lubbs31 said, your spacing is off.

    Currently it looks like this:
    Code:
    groups:
        Default:
            default: true
            permissions:
            - -modifyworld.*
            - modifyworld.chat
            - -bukkit.command.reload
            - -bukkit.command.timings
    But it should be formatted like this:
    Code:
    groups:
      Default:
        default: true
        permissions:
        - -modifyworld.*
        - modifyworld.chat
        - -bukkit.command.reload
        - -bukkit.command.timings
    Notice how in the top one with each step down (group to group name to options) the spacing is 4, whereas the bottom one (the correct one) has only a two space difference? You'll need to correct this for your entire permissions file.
     
    lubbs31 likes this.
Thread Status:
Not open for further replies.

Share This Page