Skip to content

Commit

Permalink
fix: vane-permissions will not remove any permissions defaults anymor…
Browse files Browse the repository at this point in the history
…e, except when explicitly requested. (fixes #66)

This is to ease installation for the majority of the userbase.
  • Loading branch information
oddlama committed Dec 5, 2021
1 parent 283ce7d commit 7c651e2
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
public class Permissions extends Module<Permissions> {

// Configuration
@ConfigBoolean(def = true, desc = "Remove all default permissions to start with a clean preset.")
@ConfigBoolean(
def = false,
desc = "Remove all default permissions from ANY SOURCE (including other plugins and minecraft permissions) to start with a clean preset. This will allow you to exactly set which player have which permissions instead of having to resort to volatile stateful changes like negative permissions. This will result in OPped players to lose access to commands, if not explicitly added back via permissions. The wildcard permissions can be viewed using `perms list permissions`. The wildcard permissions `minecraft` and `craftbukkit` may be especially useful."
)
public boolean config_remove_defaults;

@ConfigString(
Expand Down

0 comments on commit 7c651e2

Please sign in to comment.