mirror of
https://github.com/BentoBoxWorld/AcidIsland.git
synced 2024-11-26 12:46:14 +01:00
Removed admin reload command reference.
This commit is contained in:
parent
f181955242
commit
cecf81714b
@ -1,4 +1,4 @@
|
|||||||
name: BentoBox-AcidIsland
|
name: AcidIsland
|
||||||
main: bentobox.addon.acidisland.AcidIsland
|
main: bentobox.addon.acidisland.AcidIsland
|
||||||
version: 0.1
|
version: 0.1
|
||||||
|
|
||||||
|
2
pom.xml
2
pom.xml
@ -63,7 +63,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>world.bentobox</groupId>
|
<groupId>world.bentobox</groupId>
|
||||||
<artifactId>bentobox</artifactId>
|
<artifactId>bentobox</artifactId>
|
||||||
<version>FC-0.92</version>
|
<version>FC-0.95</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -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.AdminGetRankCommand;
|
||||||
import world.bentobox.bentobox.api.commands.admin.AdminInfoCommand;
|
import world.bentobox.bentobox.api.commands.admin.AdminInfoCommand;
|
||||||
import world.bentobox.bentobox.api.commands.admin.AdminRegisterCommand;
|
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.AdminSchemCommand;
|
||||||
import world.bentobox.bentobox.api.commands.admin.AdminSetRankCommand;
|
import world.bentobox.bentobox.api.commands.admin.AdminSetRankCommand;
|
||||||
import world.bentobox.bentobox.api.commands.admin.AdminTeleportCommand;
|
import world.bentobox.bentobox.api.commands.admin.AdminTeleportCommand;
|
||||||
@ -34,7 +33,7 @@ public class AcidCommand extends CompositeCommand {
|
|||||||
setPermissionPrefix("acidisland");
|
setPermissionPrefix("acidisland");
|
||||||
setPermission("acidisland.admin.*");
|
setPermission("acidisland.admin.*");
|
||||||
setOnlyPlayer(false);
|
setOnlyPlayer(false);
|
||||||
setParameters("commands.admin.help.parameters");
|
setParametersHelp("commands.admin.help.parameters");
|
||||||
setDescription("commands.admin.help.description");
|
setDescription("commands.admin.help.description");
|
||||||
setWorld(((AcidIsland)getAddon()).getIslandWorld());
|
setWorld(((AcidIsland)getAddon()).getIslandWorld());
|
||||||
|
|
||||||
@ -47,7 +46,6 @@ public class AcidCommand extends CompositeCommand {
|
|||||||
new AdminGetRankCommand(this);
|
new AdminGetRankCommand(this);
|
||||||
new AdminInfoCommand(this);
|
new AdminInfoCommand(this);
|
||||||
new AdminRegisterCommand(this);
|
new AdminRegisterCommand(this);
|
||||||
new AdminReloadCommand(this);
|
|
||||||
new AdminSchemCommand(this);
|
new AdminSchemCommand(this);
|
||||||
new AdminSetRankCommand(this);
|
new AdminSetRankCommand(this);
|
||||||
new AdminTeleportCommand(this, "tp");
|
new AdminTeleportCommand(this, "tp");
|
||||||
|
Loading…
Reference in New Issue
Block a user