Removed admin reload command reference.

This commit is contained in:
tastybento 2018-08-12 19:55:10 -07:00
parent f181955242
commit cecf81714b
3 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,4 @@
name: BentoBox-AcidIsland
name: AcidIsland
main: bentobox.addon.acidisland.AcidIsland
version: 0.1

View File

@ -63,7 +63,7 @@
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
<version>FC-0.92</version>
<version>FC-0.95</version>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -10,7 +10,6 @@ import world.bentobox.bentobox.api.commands.admin.AdminClearResetsCommand;
import world.bentobox.bentobox.api.commands.admin.AdminGetRankCommand;
import world.bentobox.bentobox.api.commands.admin.AdminInfoCommand;
import world.bentobox.bentobox.api.commands.admin.AdminRegisterCommand;
import world.bentobox.bentobox.api.commands.admin.AdminReloadCommand;
import world.bentobox.bentobox.api.commands.admin.AdminSchemCommand;
import world.bentobox.bentobox.api.commands.admin.AdminSetRankCommand;
import world.bentobox.bentobox.api.commands.admin.AdminTeleportCommand;
@ -34,7 +33,7 @@ public class AcidCommand extends CompositeCommand {
setPermissionPrefix("acidisland");
setPermission("acidisland.admin.*");
setOnlyPlayer(false);
setParameters("commands.admin.help.parameters");
setParametersHelp("commands.admin.help.parameters");
setDescription("commands.admin.help.description");
setWorld(((AcidIsland)getAddon()).getIslandWorld());
@ -47,7 +46,6 @@ public class AcidCommand extends CompositeCommand {
new AdminGetRankCommand(this);
new AdminInfoCommand(this);
new AdminRegisterCommand(this);
new AdminReloadCommand(this);
new AdminSchemCommand(this);
new AdminSetRankCommand(this);
new AdminTeleportCommand(this, "tp");