From 0911c864225956431a955fb547872a5a36b37fb1 Mon Sep 17 00:00:00 2001 From: filoghost Date: Mon, 24 Apr 2017 20:17:43 +0200 Subject: [PATCH] Prevent players from resetting each other's skills The child permission has the value set to false. From http://bukkit.gamepedia.com/Plugin_YAML: "a child node of false inherits the inverse parent permission". Having the value set to false grants the permission to reset other players' skills to everyone that doesn't have the mcmmo.skillreset permission, which by default nobody has. --- src/main/resources/plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 9c1fa82a0..950857056 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1900,7 +1900,7 @@ permissions: description: Allow reset of skill levels children: mcmmo.commands.skillreset.all: true - mcmmo.commands.skillreset.others.all: false + mcmmo.commands.skillreset.others.all: true mcmmo.skills.*: default: false description: Implies all mcmmo.skills permissions.