diff options
author | snowleo <schneeleo@gmail.com> | 2012-08-06 18:25:55 +0200 |
---|---|---|
committer | snowleo <schneeleo@gmail.com> | 2012-08-06 18:25:55 +0200 |
commit | 0cacc10c31d2e6e2863bc6413705b0d7fe8231ea (patch) | |
tree | 6fee44db492794422bbf0a02e3b29506ac72da81 | |
parent | 848ee76eabd23ecd89c4e23f442d99dab176f430 (diff) | |
parent | b1d174292dc437ad48961aa61af85db0aaeb1dcf (diff) | |
download | Essentials-0cacc10c31d2e6e2863bc6413705b0d7fe8231ea.tar Essentials-0cacc10c31d2e6e2863bc6413705b0d7fe8231ea.tar.gz Essentials-0cacc10c31d2e6e2863bc6413705b0d7fe8231ea.tar.lz Essentials-0cacc10c31d2e6e2863bc6413705b0d7fe8231ea.tar.xz Essentials-0cacc10c31d2e6e2863bc6413705b0d7fe8231ea.zip |
Merge branch 'refs/heads/groupmanager' into 2.9
-rw-r--r-- | EssentialsGroupManager/src/Changelog.txt | 3 | ||||
-rw-r--r-- | EssentialsGroupManager/src/org/anjocaido/groupmanager/GlobalGroups.java | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/EssentialsGroupManager/src/Changelog.txt b/EssentialsGroupManager/src/Changelog.txt index 027df85f8..63fa8b9d7 100644 --- a/EssentialsGroupManager/src/Changelog.txt +++ b/EssentialsGroupManager/src/Changelog.txt @@ -191,4 +191,5 @@ v 2.0: - Stop force removing attachments and let Bukkit handle it's own mess.
- Change to our own Yaml parsing for globalgroups instead of using the YAMLConfiguration class in bukkit.
- Fix a cases sensitivity bug in world loading.
- - Stop using the YamlConfiguration in bukkit for our config handling. We can now support periods in world names.
\ No newline at end of file + - Stop using the YamlConfiguration in bukkit for our config handling. We can now support periods in world names.
+ - Fix GlobalGroups not loading permission nodes.
\ No newline at end of file diff --git a/EssentialsGroupManager/src/org/anjocaido/groupmanager/GlobalGroups.java b/EssentialsGroupManager/src/org/anjocaido/groupmanager/GlobalGroups.java index a84666b8e..cc8181ddf 100644 --- a/EssentialsGroupManager/src/org/anjocaido/groupmanager/GlobalGroups.java +++ b/EssentialsGroupManager/src/org/anjocaido/groupmanager/GlobalGroups.java @@ -161,7 +161,7 @@ public class GlobalGroups { Object element;
// Permission nodes
- element = GGroups.get("groups." + groupName + ".permissions");
+ element = ((Map<String, Object>)allGroups.get(groupName)).get("permissions");
if (element != null)
if (element instanceof List) {
@@ -180,7 +180,7 @@ public class GlobalGroups { throw new IllegalArgumentException("Unknown type of permission node for global group: " + groupName);
// Info nodes
- element = GGroups.get("groups." + groupName + ".info");
+ element = ((Map<String, Object>)allGroups.get(groupName)).get("info");
if (element != null)
if (element instanceof MemorySection) {
|