mirror of
https://github.com/BentoBoxWorld/AcidIsland.git
synced 2024-12-23 17:48:15 +01:00
Updated.
This commit is contained in:
parent
d019ea71d7
commit
eb43eca132
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user