mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-25 11:46:54 +01:00
Migrate to dynamic dependency loading
This commit is contained in:
parent
c2e1d82c09
commit
53cde6f804
11
pom.xml
11
pom.xml
@ -75,6 +75,17 @@
|
||||
<includes>
|
||||
<include>**/nms/v*/**</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/third_party/org/apache/**</exclude>
|
||||
<exclude>**/third_party/net/kyori/**</exclude>
|
||||
<exclude>**/third_party/com/zaxxer/**</exclude>
|
||||
<exclude>**/third_party/org/jooq/**</exclude>
|
||||
<exclude>**/third_party/org/mariadb/**</exclude>
|
||||
<exclude>**/third_party/com/h2database/**</exclude>
|
||||
<exclude>**/third_party/org/h2/**</exclude>
|
||||
<exclude>**/third_party/com/cryptomorin/**</exclude>
|
||||
<exclude>**/third_party/org/reactivestreams/**</exclude>
|
||||
</excludes>
|
||||
</filter>
|
||||
</filters>
|
||||
</configuration>
|
||||
|
@ -5,10 +5,11 @@ import com.craftaro.core.SongodaPlugin;
|
||||
import com.craftaro.core.compatibility.ServerProject;
|
||||
import com.craftaro.core.compatibility.ServerVersion;
|
||||
import com.craftaro.core.configuration.Config;
|
||||
import com.craftaro.core.dependency.Dependency;
|
||||
import com.craftaro.core.gui.GuiManager;
|
||||
import com.craftaro.core.hooks.HologramManager;
|
||||
import com.craftaro.core.hooks.LogManager;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.skyblock.api.SkyBlockAPI;
|
||||
import com.craftaro.skyblock.ban.BanManager;
|
||||
import com.craftaro.skyblock.bank.BankManager;
|
||||
@ -81,7 +82,9 @@ import org.bukkit.plugin.PluginManager;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
public class SkyBlock extends SongodaPlugin {
|
||||
private FileManager fileManager;
|
||||
@ -146,6 +149,11 @@ public class SkyBlock extends SongodaPlugin {
|
||||
private FileConfiguration stackables;
|
||||
private FileConfiguration upgrades;
|
||||
|
||||
@Override
|
||||
protected Set<Dependency> getDependencies() {
|
||||
return new HashSet<>();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPluginLoad() {
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
package com.craftaro.skyblock.api.island;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.google.common.base.Preconditions;
|
||||
import org.bukkit.Location;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.api.structure;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.ban;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
import com.craftaro.skyblock.island.Island;
|
||||
|
@ -2,7 +2,7 @@ package com.craftaro.skyblock.blockscanner;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.compatibility.ServerVersion;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.island.Island;
|
||||
import com.craftaro.skyblock.island.IslandEnvironment;
|
||||
|
@ -2,7 +2,7 @@ package com.craftaro.skyblock.challenge.challenge;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.hooks.economies.Economy;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.bank.BankManager;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package com.craftaro.skyblock.challenge.challenge;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.configuration.ConfigurationSection;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.challenge.challenge;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package com.craftaro.skyblock.challenge.defaultinv;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.challenge.inventory.inv;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.challenge.FabledChallenge;
|
||||
import com.craftaro.skyblock.challenge.challenge.Challenge;
|
||||
import com.craftaro.skyblock.challenge.challenge.ChallengeCategory;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.commands.admin.AddUpgradeCommand;
|
||||
import com.craftaro.skyblock.command.commands.admin.AdminBank;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -2,7 +2,7 @@ package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.hooks.EconomyManager;
|
||||
import com.craftaro.core.hooks.economies.Economy;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.menus.admin.Creator;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.menus.admin.Levelling;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleBiome;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.biome.BiomeManager;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.NumberUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.NumberUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.gui.permissions.GuiPermissionsSelector;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.message.MessageManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager.Config;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.admin;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.api.event.player.PlayerIslandJoinEvent;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.ban.Ban;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.biome.BiomeManager;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.challenge.FabledChallenge;
|
||||
import com.craftaro.skyblock.challenge.challenge.Challenge;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.api.event.player.PlayerIslandChatEvent;
|
||||
import com.craftaro.skyblock.api.event.player.PlayerIslandChatSwitchEvent;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.hooks.economies.Economy;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.api.event.island.IslandInviteEvent;
|
||||
import com.craftaro.skyblock.api.invite.IslandInvitation;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.api.event.island.IslandKickEvent;
|
||||
import com.craftaro.skyblock.api.utils.APIUtil;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.api.event.island.IslandKickEvent;
|
||||
import com.craftaro.skyblock.api.utils.APIUtil;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.api.event.player.PlayerIslandLeaveEvent;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.NumberUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.menus.Members;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,8 +1,8 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.ban.Ban;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.hooks.economies.Economy;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.NumberUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.hooks.economies.Economy;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,8 +1,8 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.NumberUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.menus.Visit;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.api.event.player.PlayerVoteEvent;
|
||||
import com.craftaro.skyblock.api.event.player.PlayerVoteRemoveEvent;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.island.Island;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.command.commands.island.disabled;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.command.SubCommand;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.generator;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.skyblock.island.IslandWorld;
|
||||
|
||||
import java.util.List;
|
||||
|
@ -2,9 +2,9 @@ package com.craftaro.skyblock.generator;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.compatibility.ServerVersion;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XBlock;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XBlock;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.island.IslandWorld;
|
||||
import org.bukkit.block.Block;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.generator;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
|
||||
public class GeneratorMaterial {
|
||||
private final XMaterial materials;
|
||||
|
@ -3,8 +3,8 @@ package com.craftaro.skyblock.gui;
|
||||
import com.craftaro.core.gui.AnvilGui;
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -3,8 +3,8 @@ package com.craftaro.skyblock.gui;
|
||||
import com.craftaro.core.gui.AnvilGui;
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -3,8 +3,8 @@ package com.craftaro.skyblock.gui.bank;
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiManager;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.island.Island;
|
||||
|
@ -4,8 +4,8 @@ import com.craftaro.core.gui.AnvilGui;
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.hooks.economies.Economy;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.NumberUtils;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
|
@ -2,8 +2,8 @@ package com.craftaro.skyblock.gui.bank;
|
||||
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.bank.BankManager;
|
||||
|
@ -2,7 +2,7 @@ package com.craftaro.skyblock.gui.biome;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleBiome;
|
||||
import com.craftaro.core.compatibility.CompatibleMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
|
@ -3,8 +3,8 @@ package com.craftaro.skyblock.gui.biome;
|
||||
import com.craftaro.core.compatibility.CompatibleBiome;
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.biome.BiomeManager;
|
||||
|
@ -3,8 +3,8 @@ package com.craftaro.skyblock.gui.coop;
|
||||
import com.craftaro.core.gui.AnvilGui;
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.ItemUtils;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
|
@ -2,8 +2,8 @@ package com.craftaro.skyblock.gui.coop;
|
||||
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.island.Island;
|
||||
|
@ -2,8 +2,8 @@ package com.craftaro.skyblock.gui.permissions;
|
||||
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.config.FileManager;
|
||||
|
@ -2,8 +2,8 @@ package com.craftaro.skyblock.gui.permissions;
|
||||
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.gui.GuiSignatureEditor;
|
||||
|
@ -2,8 +2,8 @@ package com.craftaro.skyblock.gui.permissions;
|
||||
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.island.Island;
|
||||
|
@ -2,8 +2,8 @@ package com.craftaro.skyblock.gui.wip;
|
||||
|
||||
import com.craftaro.core.gui.Gui;
|
||||
import com.craftaro.core.gui.GuiUtils;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XMaterial;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.ItemUtils;
|
||||
import com.craftaro.core.utils.TextUtils;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
|
@ -1,6 +1,6 @@
|
||||
package com.craftaro.skyblock.invite;
|
||||
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.skyblock.SkyBlock;
|
||||
import com.craftaro.skyblock.message.MessageManager;
|
||||
import com.craftaro.skyblock.sound.SoundManager;
|
||||
|
@ -1,7 +1,7 @@
|
||||
package com.craftaro.skyblock.island;
|
||||
|
||||
import com.craftaro.core.compatibility.CompatibleBiome;
|
||||
import com.craftaro.core.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.third_party.com.cryptomorin.xseries.XSound;
|
||||
import com.craftaro.core.utils.NumberUtils;
|
||||
import com.craftaro.core.utils.PlayerUtils;
|
||||
import com.craftaro.core.world.SWorldBorder;
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user