This commit is contained in:
tastybento 2018-06-10 22:33:26 -07:00
parent d019ea71d7
commit eb43eca132
2 changed files with 7 additions and 4 deletions

View File

@ -13,6 +13,7 @@ import us.tastybento.bskyblock.commands.admin.AdminSchemCommand;
import us.tastybento.bskyblock.commands.admin.AdminSetRankCommand;
import us.tastybento.bskyblock.commands.admin.AdminTeleportCommand;
import us.tastybento.bskyblock.commands.admin.AdminVersionCommand;
import us.tastybento.bskyblock.commands.admin.AdminWorldCommand;
import us.tastybento.bskyblock.commands.admin.teams.AdminTeamAddCommand;
import us.tastybento.bskyblock.commands.admin.teams.AdminTeamDisbandCommand;
import us.tastybento.bskyblock.commands.admin.teams.AdminTeamKickCommand;
@ -47,6 +48,8 @@ public class AcidCommand extends CompositeCommand {
new AdminTeamMakeLeaderCommand(this);
// Schems
new AdminSchemCommand(this);
// World
new AdminWorldCommand(this);
}
@Override

View File

@ -17,10 +17,10 @@ public class AcidIslandWorld {
private static final String NETHER = "_nether";
private static final String THE_END = "_the_end";
private final World islandWorld;
private World islandWorld;
private World netherWorld;
private World endWorld;
/**
* Create a register worlds with BSkyBlock
* @param addon - addon
@ -73,11 +73,11 @@ public class AcidIslandWorld {
public World getOverWorld() {
return islandWorld;
}
public World getNetherWorld() {
return netherWorld;
}
public World getEndWorld() {
return endWorld;
}