13
0
geforkt von Mirrors/Paper

All permissions now default to OP unless stated otherwise.

By: Dinnerbone <dinnerbone@dinnerbone.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2011-09-21 00:29:01 +01:00
Ursprung acd8d918f1
Commit 1caebea71d

Datei anzeigen

@ -15,7 +15,7 @@ import org.bukkit.plugin.PluginManager;
* Represents a unique permission that may be attached to a {@link Permissible} * Represents a unique permission that may be attached to a {@link Permissible}
*/ */
public class Permission { public class Permission {
public static final PermissionDefault DEFAULT_PERMISSION = PermissionDefault.FALSE; public static final PermissionDefault DEFAULT_PERMISSION = PermissionDefault.OP;
private final String name; private final String name;
private final Map<String, Boolean> children = new LinkedHashMap<String, Boolean>(); private final Map<String, Boolean> children = new LinkedHashMap<String, Boolean>();
@ -316,8 +316,6 @@ public class Permission {
children.put(entry.getKey(), (Boolean)entry.getValue()); children.put(entry.getKey(), (Boolean)entry.getValue());
} else if ((entry.getValue() instanceof Map)) { } else if ((entry.getValue() instanceof Map)) {
try { try {
System.out.println("Going to make new child " + (String)entry.getKey() + " perm for " + name);
try try
{ {
Permission perm = loadPermission((String)entry.getKey(), (Map<String, Object>)entry.getValue(), def, output); Permission perm = loadPermission((String)entry.getKey(), (Map<String, Object>)entry.getValue(), def, output);