mirror of
https://github.com/BentoBoxWorld/AcidIsland.git
synced 2024-11-27 05:05:23 +01:00
Added /ai info
and /acid deaths
This commit is contained in:
parent
919b503543
commit
57855ceea9
@ -16,6 +16,7 @@ import world.bentobox.bentobox.api.commands.admin.AdminTeleportCommand;
|
|||||||
import world.bentobox.bentobox.api.commands.admin.AdminUnregisterCommand;
|
import world.bentobox.bentobox.api.commands.admin.AdminUnregisterCommand;
|
||||||
import world.bentobox.bentobox.api.commands.admin.AdminVersionCommand;
|
import world.bentobox.bentobox.api.commands.admin.AdminVersionCommand;
|
||||||
import world.bentobox.bentobox.api.commands.admin.AdminWhyCommand;
|
import world.bentobox.bentobox.api.commands.admin.AdminWhyCommand;
|
||||||
|
import world.bentobox.bentobox.api.commands.admin.deaths.AdminDeathsCommand;
|
||||||
import world.bentobox.bentobox.api.commands.admin.range.AdminRangeCommand;
|
import world.bentobox.bentobox.api.commands.admin.range.AdminRangeCommand;
|
||||||
import world.bentobox.bentobox.api.commands.admin.schem.AdminSchemCommand;
|
import world.bentobox.bentobox.api.commands.admin.schem.AdminSchemCommand;
|
||||||
import world.bentobox.bentobox.api.commands.admin.team.AdminTeamAddCommand;
|
import world.bentobox.bentobox.api.commands.admin.team.AdminTeamAddCommand;
|
||||||
@ -63,6 +64,8 @@ public class AcidCommand extends CompositeCommand {
|
|||||||
new AdminDeleteCommand(this);
|
new AdminDeleteCommand(this);
|
||||||
// Why
|
// Why
|
||||||
new AdminWhyCommand(this);
|
new AdminWhyCommand(this);
|
||||||
|
|
||||||
|
new AdminDeathsCommand(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -10,6 +10,7 @@ import world.bentobox.bentobox.api.commands.island.IslandBanCommand;
|
|||||||
import world.bentobox.bentobox.api.commands.island.IslandBanlistCommand;
|
import world.bentobox.bentobox.api.commands.island.IslandBanlistCommand;
|
||||||
import world.bentobox.bentobox.api.commands.island.IslandCreateCommand;
|
import world.bentobox.bentobox.api.commands.island.IslandCreateCommand;
|
||||||
import world.bentobox.bentobox.api.commands.island.IslandGoCommand;
|
import world.bentobox.bentobox.api.commands.island.IslandGoCommand;
|
||||||
|
import world.bentobox.bentobox.api.commands.island.IslandInfoCommand;
|
||||||
import world.bentobox.bentobox.api.commands.island.IslandLanguageCommand;
|
import world.bentobox.bentobox.api.commands.island.IslandLanguageCommand;
|
||||||
import world.bentobox.bentobox.api.commands.island.IslandResetCommand;
|
import world.bentobox.bentobox.api.commands.island.IslandResetCommand;
|
||||||
import world.bentobox.bentobox.api.commands.island.IslandResetnameCommand;
|
import world.bentobox.bentobox.api.commands.island.IslandResetnameCommand;
|
||||||
@ -43,6 +44,7 @@ public class AiCommand extends CompositeCommand {
|
|||||||
setWorld(((AcidIsland)getAddon()).getIslandWorld());
|
setWorld(((AcidIsland)getAddon()).getIslandWorld());
|
||||||
// Set up subcommands
|
// Set up subcommands
|
||||||
new IslandAboutCommand(this);
|
new IslandAboutCommand(this);
|
||||||
|
new IslandInfoCommand(this);
|
||||||
new IslandCreateCommand(this);
|
new IslandCreateCommand(this);
|
||||||
new IslandGoCommand(this);
|
new IslandGoCommand(this);
|
||||||
new IslandResetCommand(this);
|
new IslandResetCommand(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user