mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-24 19:55:17 +01:00
⚠️ removed CompositeCommand#setPermissionPrefix(String)
The permissionPrefix is now inherited from the addon's.
This commit is contained in:
parent
d9a15ceedd
commit
b6230f2bdf
@ -131,6 +131,7 @@ public abstract class CompositeCommand extends Command implements PluginIdentifi
|
|||||||
// Default references to description and parameters
|
// Default references to description and parameters
|
||||||
setDescription(COMMANDS + label + ".description");
|
setDescription(COMMANDS + label + ".description");
|
||||||
setParametersHelp(COMMANDS + label + ".parameters");
|
setParametersHelp(COMMANDS + label + ".parameters");
|
||||||
|
permissionPrefix = (addon != null) ? addon.getPermissionPrefix() : "";
|
||||||
setup();
|
setup();
|
||||||
if (!getSubCommand("help").isPresent() && !label.equals("help")) {
|
if (!getSubCommand("help").isPresent() && !label.equals("help")) {
|
||||||
new DefaultHelpCommand(this);
|
new DefaultHelpCommand(this);
|
||||||
@ -609,16 +610,6 @@ public abstract class CompositeCommand extends Command implements PluginIdentifi
|
|||||||
return permissionPrefix;
|
return permissionPrefix;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the permission prefix. This will be added automatically to the permission
|
|
||||||
* and will apply to any sub commands too.
|
|
||||||
* Do not put a dot on the end of it.
|
|
||||||
* @param permissionPrefix the permissionPrefix to set
|
|
||||||
*/
|
|
||||||
public void setPermissionPrefix(String permissionPrefix) {
|
|
||||||
this.permissionPrefix = permissionPrefix + ".";
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The the world that this command applies to.
|
* The the world that this command applies to.
|
||||||
* @return the world
|
* @return the world
|
||||||
|
Loading…
Reference in New Issue
Block a user