Update default configs

This commit is contained in:
Luck 2016-09-16 22:09:55 +01:00
parent 497de9824a
commit e7a210dc06
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
4 changed files with 7 additions and 3 deletions

View File

@ -30,7 +30,7 @@ online-mode: true
# If the plugin should apply wildcard permissions.
# If set to true, LuckPerms will detect wildcard permissions, and resolve & apply all registered permissions matching
# the wildcard. This will only work for plugins that define all of their permissions to the server.
# the wildcard.
apply-wildcards: true
# If the plugin should parse regex permissions.

View File

@ -30,7 +30,7 @@ online-mode: true
# If the plugin should apply wildcard permissions.
# If set to true, LuckPerms will detect wildcard permissions, and resolve & apply all registered permissions matching
# the wildcard. This will only work for plugins that define all of their permissions to the server.
# the wildcard.
apply-wildcards: true
# If the plugin should parse regex permissions.
@ -46,6 +46,9 @@ apply-shorthand: true
# If the plugin should send log notifications to users whenever permissions are modified.
log-notify: true
# If LuckPerms should print to console every time a plugin checks if a player has a permission
debug-permission-checks: false
# Which storage method the plugin should use.
# Currently supported: mysql, sqlite, h2, json, yaml, mongodb
# Fill out connection info below if you're using MySQL or MongoDB

View File

@ -277,6 +277,7 @@ public class Node implements me.lucko.luckperms.api.Node {
return false;
}
// TODO move this method to resolve time
@Override
public List<String> resolveWildcard(List<String> possibleNodes) {
if (!isWildcard() || possibleNodes == null) {

View File

@ -26,7 +26,7 @@ online-mode=true
# If the plugin should apply wildcard permissions.
# If set to true, LuckPerms will detect wildcard permissions, and resolve & apply all registered permissions matching
# the wildcard. This will only work for plugins that define all of their permissions to the server.
# the wildcard.
apply-wildcards=true
# If the plugin should parse regex permissions.