Refactoring

This commit is contained in:
BuildTools
2020-10-03 14:25:40 +01:00
parent 695f914cb1
commit 2942f57528
9 changed files with 13 additions and 12 deletions

View File

@@ -13,6 +13,7 @@ import java.util.Arrays;
import java.util.List;
import java.util.Map;
@SuppressWarnings("unchecked")
public final class CommandEcodebug extends AbstractCommand {
public CommandEcodebug() {
super("ecodebug", "ecoenchants.ecodebug", true);

View File

@@ -1,4 +1,4 @@
package com.willfp.ecoenchants.anvil;
package com.willfp.ecoenchants.enchantments.vanillasupport.merging.anvil;
import com.willfp.ecoenchants.EcoEnchantsPlugin;
import com.willfp.ecoenchants.util.Pair;

View File

@@ -1,4 +1,4 @@
package com.willfp.ecoenchants.anvil;
package com.willfp.ecoenchants.enchantments.vanillasupport.merging.anvil;
import com.willfp.ecoenchants.config.ConfigManager;
import com.willfp.ecoenchants.enchantments.EcoEnchant;

View File

@@ -1,4 +1,4 @@
package com.willfp.ecoenchants.grindstone;
package com.willfp.ecoenchants.enchantments.vanillasupport.merging.grindstone;
import com.willfp.ecoenchants.EcoEnchantsPlugin;
import org.bukkit.Bukkit;

View File

@@ -1,4 +1,4 @@
package com.willfp.ecoenchants.grindstone;
package com.willfp.ecoenchants.enchantments.vanillasupport.merging.grindstone;
import com.willfp.ecoenchants.enchantments.EcoEnchant;
import com.willfp.ecoenchants.enchantments.EcoEnchants;

View File

@@ -1,4 +1,4 @@
package com.willfp.ecoenchants.enchantments.obtaining;
package com.willfp.ecoenchants.enchantments.vanillasupport.obtaining;
import com.willfp.ecoenchants.EcoEnchantsPlugin;
import com.willfp.ecoenchants.config.ConfigManager;

View File

@@ -1,4 +1,4 @@
package com.willfp.ecoenchants.enchantments.obtaining;
package com.willfp.ecoenchants.enchantments.vanillasupport.obtaining;
import com.willfp.ecoenchants.config.ConfigManager;
import com.willfp.ecoenchants.enchantments.EcoEnchant;

View File

@@ -1,4 +1,4 @@
package com.willfp.ecoenchants.enchantments.obtaining;
package com.willfp.ecoenchants.enchantments.vanillasupport.obtaining;
import com.willfp.ecoenchants.config.ConfigManager;
import com.willfp.ecoenchants.enchantments.EcoEnchant;

View File

@@ -2,7 +2,7 @@ package com.willfp.ecoenchants.loader;
import com.comphenix.protocol.ProtocolLibrary;
import com.willfp.ecoenchants.EcoEnchantsPlugin;
import com.willfp.ecoenchants.anvil.AnvilListeners;
import com.willfp.ecoenchants.enchantments.vanillasupport.merging.anvil.AnvilListeners;
import com.willfp.ecoenchants.command.commands.CommandEcodebug;
import com.willfp.ecoenchants.command.commands.CommandEcoreload;
import com.willfp.ecoenchants.command.commands.CommandEnchantinfo;
@@ -16,16 +16,16 @@ import com.willfp.ecoenchants.enchantments.EcoEnchant;
import com.willfp.ecoenchants.enchantments.EcoEnchants;
import com.willfp.ecoenchants.enchantments.meta.EnchantmentRarity;
import com.willfp.ecoenchants.enchantments.meta.EnchantmentTarget;
import com.willfp.ecoenchants.enchantments.obtaining.EnchantingListeners;
import com.willfp.ecoenchants.enchantments.obtaining.LootPopulator;
import com.willfp.ecoenchants.enchantments.obtaining.VillagerListeners;
import com.willfp.ecoenchants.enchantments.vanillasupport.obtaining.EnchantingListeners;
import com.willfp.ecoenchants.enchantments.vanillasupport.obtaining.LootPopulator;
import com.willfp.ecoenchants.enchantments.vanillasupport.obtaining.VillagerListeners;
import com.willfp.ecoenchants.enchantments.util.WatcherTriggers;
import com.willfp.ecoenchants.events.armorequip.ArmorListener;
import com.willfp.ecoenchants.events.armorequip.DispenserArmorListener;
import com.willfp.ecoenchants.events.entitydeathbyentity.EntityDeathByEntityListeners;
import com.willfp.ecoenchants.events.naturalexpgainevent.NaturalExpGainListeners;
import com.willfp.ecoenchants.extensions.ExtensionManager;
import com.willfp.ecoenchants.grindstone.GrindstoneListeners;
import com.willfp.ecoenchants.enchantments.vanillasupport.merging.grindstone.GrindstoneListeners;
import com.willfp.ecoenchants.integrations.anticheat.AnticheatManager;
import com.willfp.ecoenchants.integrations.anticheat.plugins.AnticheatAAC;
import com.willfp.ecoenchants.integrations.anticheat.plugins.AnticheatMatrix;