Problem/Bug Server Commands and Permission Problems.

Discussion in 'Plugin Help/Development/Requests' started by Snoopyfun, Oct 16, 2016.

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

    Snoopyfun

    I'm not sure what is wrong, but one of the admins on my server changed some worth.yml things in essentials And I think it might have ruined the server. When I went online /spawn and /help were not working. (The error message was "Error: null". I have already tried restarting my server, redownloading essentials, getting rid of essentials, and etc.
    Also Group manager has an error in the logs but idk what it means:

    http://pastebin.com/a6U9qb9U

    (I tried to make a bukkit code to paste the error message but it was over 3000 characters)
     
  2. Offline

    timtower Administrator Administrator Moderator

  3. Offline

    Snoopyfun

  4. Offline

    I Al Istannen

    @Snoopyfun
    The indention of this is wrong:
    Code:
      mirrors:
            # Worlds listed here have their settings mirrored in their children.
            # The first element 'world' is the main worlds name, and is the parent world.
            # subsequent elements 'world_nether' and 'world_the_end' are worlds which will use
            # the same user/groups files as the parent.
            # the element 'all_unnamed_worlds' specifies all worlds that aren't listed, and automatically mirrors them to it's parent.
            # Each child world can be configured to mirror the 'groups', 'users' or both files from its parent.
            world:
               plum-springs_nether:
              - default
              - users
              - groups
              plum-springs_the_end:
              - default
              - users
              - groups
              all_unnamed_worlds:
              - default
              - users
              - groups
    Should be:
    Code:
      mirrors:
        world:
          all_unnamed_worlds:
            - default
            - users
            - groups
          plum-springs_nether:
            - default
            - users
            - groups
          plum-springs_the_end:
            - default
            - users
            - groups
    You can check the syntax using a yaml validator like yamllint.com.
     
Thread Status:
Not open for further replies.

Share This Page