Added "rl" alias for the AdminReloadCommand

This commit is contained in:
Florian CUNY 2019-06-10 17:36:20 +02:00
parent 35f8a80167
commit 880185ad4b

View File

@ -9,12 +9,11 @@ import world.bentobox.bentobox.api.user.User;
* Generic reload command for addons to use that will just call the onReload() method * Generic reload command for addons to use that will just call the onReload() method
* after checking permissions * after checking permissions
* @author tastybento * @author tastybento
*
*/ */
public class AdminReloadCommand extends CompositeCommand { public class AdminReloadCommand extends CompositeCommand {
public AdminReloadCommand(CompositeCommand adminCommand) { public AdminReloadCommand(CompositeCommand adminCommand) {
super(adminCommand, "reload"); super(adminCommand, "reload", "rl");
} }
@Override @Override