diff options
author | ElgarL <ElgarL@palmergames.com> | 2012-04-11 19:10:28 +0100 |
---|---|---|
committer | ElgarL <ElgarL@palmergames.com> | 2012-04-11 19:10:28 +0100 |
commit | 25759064ff4c518193185fe3e993634408230eb7 (patch) | |
tree | 259f65d92bcf1a8835abd3a9464d9f27bf2a6c50 /EssentialsGroupManager/src/org | |
parent | cd24ffbadac6c48931f5ff33457950103b0e62da (diff) | |
download | Essentials-25759064ff4c518193185fe3e993634408230eb7.tar Essentials-25759064ff4c518193185fe3e993634408230eb7.tar.gz Essentials-25759064ff4c518193185fe3e993634408230eb7.tar.lz Essentials-25759064ff4c518193185fe3e993634408230eb7.tar.xz Essentials-25759064ff4c518193185fe3e993634408230eb7.zip |
Expand GlobalGroups.yml and groups.yml to cover the VanishNoPacket
plugin. Demonstrating how to negate and add nodes when using the '*'
permission with inheritance.
Diffstat (limited to 'EssentialsGroupManager/src/org')
-rw-r--r-- | EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java b/EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java index 135417068..8c974f34a 100644 --- a/EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java +++ b/EssentialsGroupManager/src/org/anjocaido/groupmanager/dataholder/WorldDataHolder.java @@ -809,12 +809,14 @@ public class WorldDataHolder { String newLine = System.getProperty("line.separator"); out.write("# Group inheritance" + newLine); - out.write("# any inherited groups prefixed with a g: are global groups" + newLine); - out.write("# These groups are defined in the globalgroups.yml" + newLine); - out.write("# and can be inherited in any worlds groups/users.yml." + newLine); + out.write("#" + newLine); + out.write("# Any inherited groups prefixed with a g: are global groups" + newLine); + out.write("# and are inherited from the GlobalGroups.yml." + newLine); out.write("#" + newLine); out.write("# Groups without the g: prefix are groups local to this world" + newLine); - out.write("# and defined in the this groups.yml file." + newLine); + out.write("# and are defined in the this groups.yml file." + newLine); + out.write("#" + newLine); + out.write("# Local group inheritances define your promotion tree when using 'manpromote/mandemote'" + newLine); out.write(newLine); yaml.dump(root, out); |