1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-02-24 08:22:56 +01:00

Merge branch 'refs/heads/groupmanager' into 2.9

This commit is contained in:
snowleo 2012-08-06 18:25:55 +02:00
commit e2d8846b91
2 changed files with 4 additions and 3 deletions

View File

@ -192,3 +192,4 @@ v 2.0:
- 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.
- Fix GlobalGroups not loading permission nodes.

View File

@ -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) {