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,7 +17,7 @@ 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;