mirror of
https://github.com/BentoBoxWorld/BSkyBlock.git
synced 2025-02-16 01:11:27 +01:00
Switched to new package name
This commit is contained in:
parent
1729febf54
commit
7be9fbde0d
@ -5,8 +5,8 @@ import org.bukkit.World;
|
|||||||
import bentobox.addon.bskyblock.commands.AdminCommand;
|
import bentobox.addon.bskyblock.commands.AdminCommand;
|
||||||
import bentobox.addon.bskyblock.commands.IslandCommand;
|
import bentobox.addon.bskyblock.commands.IslandCommand;
|
||||||
import bentobox.addon.bskyblock.generators.BSkyBlockWorld;
|
import bentobox.addon.bskyblock.generators.BSkyBlockWorld;
|
||||||
import world.bentobox.bbox.api.addons.Addon;
|
import world.bentobox.bentobox.api.addons.Addon;
|
||||||
import world.bentobox.bbox.api.configuration.BSBConfig;
|
import world.bentobox.bentobox.api.configuration.BSBConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Main BSkyBlock class - provides an island minigame in the sky
|
* Main BSkyBlock class - provides an island minigame in the sky
|
||||||
|
@ -13,16 +13,16 @@ import org.bukkit.Difficulty;
|
|||||||
import org.bukkit.GameMode;
|
import org.bukkit.GameMode;
|
||||||
import org.bukkit.entity.EntityType;
|
import org.bukkit.entity.EntityType;
|
||||||
|
|
||||||
import world.bentobox.bbox.api.addons.Addon;
|
import world.bentobox.bentobox.api.addons.Addon;
|
||||||
import world.bentobox.bbox.api.configuration.ConfigComment;
|
import world.bentobox.bentobox.api.configuration.ConfigComment;
|
||||||
import world.bentobox.bbox.api.configuration.ConfigEntry;
|
import world.bentobox.bentobox.api.configuration.ConfigEntry;
|
||||||
import world.bentobox.bbox.api.configuration.StoreAt;
|
import world.bentobox.bentobox.api.configuration.StoreAt;
|
||||||
import world.bentobox.bbox.api.configuration.WorldSettings;
|
import world.bentobox.bentobox.api.configuration.WorldSettings;
|
||||||
import world.bentobox.bbox.api.flags.Flag;
|
import world.bentobox.bentobox.api.flags.Flag;
|
||||||
import world.bentobox.bbox.database.objects.DataObject;
|
import world.bentobox.bentobox.database.objects.DataObject;
|
||||||
import world.bentobox.bbox.database.objects.adapters.Adapter;
|
import world.bentobox.bentobox.database.objects.adapters.Adapter;
|
||||||
import world.bentobox.bbox.database.objects.adapters.FlagSerializer;
|
import world.bentobox.bentobox.database.objects.adapters.FlagSerializer;
|
||||||
import world.bentobox.bbox.database.objects.adapters.FlagSerializer2;
|
import world.bentobox.bentobox.database.objects.adapters.FlagSerializer2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* All the plugin settings are here
|
* All the plugin settings are here
|
||||||
|
@ -3,25 +3,25 @@ package bentobox.addon.bskyblock.commands;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import bentobox.addon.bskyblock.BSkyBlock;
|
import bentobox.addon.bskyblock.BSkyBlock;
|
||||||
import world.bentobox.bbox.api.commands.CompositeCommand;
|
import world.bentobox.bentobox.api.commands.CompositeCommand;
|
||||||
import world.bentobox.bbox.api.localization.TextVariables;
|
import world.bentobox.bentobox.api.localization.TextVariables;
|
||||||
import world.bentobox.bbox.api.user.User;
|
import world.bentobox.bentobox.api.user.User;
|
||||||
import world.bentobox.bbox.commands.admin.AdminClearResetsAllCommand;
|
import world.bentobox.bentobox.commands.admin.AdminClearResetsAllCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminClearResetsCommand;
|
import world.bentobox.bentobox.commands.admin.AdminClearResetsCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminGetRankCommand;
|
import world.bentobox.bentobox.commands.admin.AdminGetRankCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminInfoCommand;
|
import world.bentobox.bentobox.commands.admin.AdminInfoCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminRegisterCommand;
|
import world.bentobox.bentobox.commands.admin.AdminRegisterCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminReloadCommand;
|
import world.bentobox.bentobox.commands.admin.AdminReloadCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminSchemCommand;
|
import world.bentobox.bentobox.commands.admin.AdminSchemCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminSetRankCommand;
|
import world.bentobox.bentobox.commands.admin.AdminSetRankCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminTeleportCommand;
|
import world.bentobox.bentobox.commands.admin.AdminTeleportCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminUnregisterCommand;
|
import world.bentobox.bentobox.commands.admin.AdminUnregisterCommand;
|
||||||
import world.bentobox.bbox.commands.admin.AdminVersionCommand;
|
import world.bentobox.bentobox.commands.admin.AdminVersionCommand;
|
||||||
import world.bentobox.bbox.commands.admin.range.AdminRangeCommand;
|
import world.bentobox.bentobox.commands.admin.range.AdminRangeCommand;
|
||||||
import world.bentobox.bbox.commands.admin.team.AdminTeamAddCommand;
|
import world.bentobox.bentobox.commands.admin.team.AdminTeamAddCommand;
|
||||||
import world.bentobox.bbox.commands.admin.team.AdminTeamDisbandCommand;
|
import world.bentobox.bentobox.commands.admin.team.AdminTeamDisbandCommand;
|
||||||
import world.bentobox.bbox.commands.admin.team.AdminTeamKickCommand;
|
import world.bentobox.bentobox.commands.admin.team.AdminTeamKickCommand;
|
||||||
import world.bentobox.bbox.commands.admin.team.AdminTeamMakeLeaderCommand;
|
import world.bentobox.bentobox.commands.admin.team.AdminTeamMakeLeaderCommand;
|
||||||
|
|
||||||
public class AdminCommand extends CompositeCommand {
|
public class AdminCommand extends CompositeCommand {
|
||||||
|
|
||||||
|
@ -4,22 +4,22 @@ import java.util.ArrayList;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import bentobox.addon.bskyblock.BSkyBlock;
|
import bentobox.addon.bskyblock.BSkyBlock;
|
||||||
import world.bentobox.bbox.api.commands.CompositeCommand;
|
import world.bentobox.bentobox.api.commands.CompositeCommand;
|
||||||
import world.bentobox.bbox.api.localization.TextVariables;
|
import world.bentobox.bentobox.api.localization.TextVariables;
|
||||||
import world.bentobox.bbox.api.user.User;
|
import world.bentobox.bentobox.api.user.User;
|
||||||
import world.bentobox.bbox.commands.island.IslandAboutCommand;
|
import world.bentobox.bentobox.commands.island.IslandAboutCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandBanCommand;
|
import world.bentobox.bentobox.commands.island.IslandBanCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandBanlistCommand;
|
import world.bentobox.bentobox.commands.island.IslandBanlistCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandCreateCommand;
|
import world.bentobox.bentobox.commands.island.IslandCreateCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandGoCommand;
|
import world.bentobox.bentobox.commands.island.IslandGoCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandLanguageCommand;
|
import world.bentobox.bentobox.commands.island.IslandLanguageCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandResetCommand;
|
import world.bentobox.bentobox.commands.island.IslandResetCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandResetnameCommand;
|
import world.bentobox.bentobox.commands.island.IslandResetnameCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandSethomeCommand;
|
import world.bentobox.bentobox.commands.island.IslandSethomeCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandSetnameCommand;
|
import world.bentobox.bentobox.commands.island.IslandSetnameCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandSettingsCommand;
|
import world.bentobox.bentobox.commands.island.IslandSettingsCommand;
|
||||||
import world.bentobox.bbox.commands.island.IslandUnbanCommand;
|
import world.bentobox.bentobox.commands.island.IslandUnbanCommand;
|
||||||
import world.bentobox.bbox.commands.island.team.IslandTeamCommand;
|
import world.bentobox.bentobox.commands.island.team.IslandTeamCommand;
|
||||||
|
|
||||||
public class IslandCommand extends CompositeCommand {
|
public class IslandCommand extends CompositeCommand {
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ import org.bukkit.WorldCreator;
|
|||||||
import org.bukkit.WorldType;
|
import org.bukkit.WorldType;
|
||||||
|
|
||||||
import bentobox.addon.bskyblock.BSkyBlock;
|
import bentobox.addon.bskyblock.BSkyBlock;
|
||||||
import world.bentobox.bbox.util.Util;
|
import world.bentobox.bentobox.util.Util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates the worlds and registers them with BentoBox
|
* Creates the worlds and registers them with BentoBox
|
||||||
|
Loading…
Reference in New Issue
Block a user