MinecraftPortCentral / Cauldron-Issues

Issue tracker for Cauldron - http://cauldron.minecraftforge.net
13 stars 6 forks source link

PEX groups not working correctly #66

Closed Twisted-Code closed 10 years ago

Twisted-Code commented 10 years ago

Not sure whose side of the fence this is on, so I will post it both here and in PEX's dev.bukkit forums: after launching the latest version of PEX (1.6), creating a group, and setting the "prefix" option for the group, I tested it by putting myself in the group and saying something. When that failed, I reloaded PEX but it still didn't work.

groups:
  default:
    options:
      default: true
    permissions:
    - modifyworld.*
  Owner:
    permissions:
    - permissions.*
    options:
      prefix: (owner)
  Admin:
    permissions: []
schema-version: 1
users:
  768df022-edbe-43df-b007-0aba07ed03b7:
    permissions:
    - permissions.*
    options:
      name: macks2008
    group:
    - Owner
ghost commented 10 years ago

Your format:

options:
  prefix: (owner)

Proper format:

options:
  prefix: '(owner)'
Twisted-Code commented 10 years ago

that was the format the command put it in the file as. I guess that makes it the plugin's side of the fence. probably explains why some other things weren't working too: commands that don't error-check. Anywho, thanks for the help.