mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-27 00:15:23 +02:00
Register is part of Economy
This commit is contained in:
@@ -25,7 +25,7 @@ import com.earth2me.essentials.backup.Backup;
|
||||
import static com.earth2me.essentials.I18n._;
|
||||
import com.earth2me.essentials.api.*;
|
||||
import com.earth2me.essentials.listener.*;
|
||||
import com.earth2me.essentials.register.payment.Methods;
|
||||
import com.earth2me.essentials.economy.register.Methods;
|
||||
import com.earth2me.essentials.ranks.RanksStorage;
|
||||
import com.earth2me.essentials.settings.SettingsHolder;
|
||||
import com.earth2me.essentials.settings.SpawnsHolder;
|
||||
|
@@ -1,7 +1,7 @@
|
||||
package com.earth2me.essentials.api;
|
||||
|
||||
import com.earth2me.essentials.listener.TntExplodeListener;
|
||||
import com.earth2me.essentials.register.payment.Methods;
|
||||
import com.earth2me.essentials.economy.register.Methods;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package com.earth2me.essentials.register.payment;
|
||||
package com.earth2me.essentials.economy.register;
|
||||
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
@@ -1,4 +1,4 @@
|
||||
package com.earth2me.essentials.register.payment;
|
||||
package com.earth2me.essentials.economy.register;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
@@ -45,14 +45,14 @@ public class Methods
|
||||
*/
|
||||
private static void _init()
|
||||
{
|
||||
addMethod("iConomy", new com.earth2me.essentials.register.payment.methods.iCo6());
|
||||
addMethod("iConomy", new com.earth2me.essentials.register.payment.methods.iCo5());
|
||||
addMethod("iConomy", new com.earth2me.essentials.register.payment.methods.iCo4());
|
||||
addMethod("BOSEconomy", new com.earth2me.essentials.register.payment.methods.BOSE6());
|
||||
addMethod("BOSEconomy", new com.earth2me.essentials.register.payment.methods.BOSE7());
|
||||
addMethod("Currency", new com.earth2me.essentials.register.payment.methods.MCUR());
|
||||
addMethod("iConomy", new com.earth2me.essentials.economy.register.methods.iCo6());
|
||||
addMethod("iConomy", new com.earth2me.essentials.economy.register.methods.iCo5());
|
||||
addMethod("iConomy", new com.earth2me.essentials.economy.register.methods.iCo4());
|
||||
addMethod("BOSEconomy", new com.earth2me.essentials.economy.register.methods.BOSE6());
|
||||
addMethod("BOSEconomy", new com.earth2me.essentials.economy.register.methods.BOSE7());
|
||||
addMethod("Currency", new com.earth2me.essentials.economy.register.methods.MCUR());
|
||||
Dependencies.add("MultiCurrency");
|
||||
addMethod("Vault", new com.earth2me.essentials.register.payment.methods.VaultEco());
|
||||
addMethod("Vault", new com.earth2me.essentials.economy.register.methods.VaultEco());
|
||||
}
|
||||
|
||||
/**
|
@@ -1,6 +1,6 @@
|
||||
package com.earth2me.essentials.register.payment.methods;
|
||||
package com.earth2me.essentials.economy.register.methods;
|
||||
|
||||
import com.earth2me.essentials.register.payment.Method;
|
||||
import com.earth2me.essentials.economy.register.Method;
|
||||
import cosine.boseconomy.BOSEconomy;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
@@ -1,6 +1,6 @@
|
||||
package com.earth2me.essentials.register.payment.methods;
|
||||
package com.earth2me.essentials.economy.register.methods;
|
||||
|
||||
import com.earth2me.essentials.register.payment.Method;
|
||||
import com.earth2me.essentials.economy.register.Method;
|
||||
import cosine.boseconomy.BOSEconomy;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
@@ -1,6 +1,6 @@
|
||||
package com.earth2me.essentials.register.payment.methods;
|
||||
package com.earth2me.essentials.economy.register.methods;
|
||||
|
||||
import com.earth2me.essentials.register.payment.Method;
|
||||
import com.earth2me.essentials.economy.register.Method;
|
||||
import me.ashtheking.currency.Currency;
|
||||
import me.ashtheking.currency.CurrencyList;
|
||||
import org.bukkit.plugin.Plugin;
|
@@ -1,6 +1,6 @@
|
||||
package com.earth2me.essentials.register.payment.methods;
|
||||
package com.earth2me.essentials.economy.register.methods;
|
||||
|
||||
import com.earth2me.essentials.register.payment.Method;
|
||||
import com.earth2me.essentials.economy.register.Method;
|
||||
import net.milkbowl.vault.Vault;
|
||||
import net.milkbowl.vault.economy.Economy;
|
||||
import org.bukkit.plugin.Plugin;
|
@@ -1,6 +1,6 @@
|
||||
package com.earth2me.essentials.register.payment.methods;
|
||||
package com.earth2me.essentials.economy.register.methods;
|
||||
|
||||
import com.earth2me.essentials.register.payment.Method;
|
||||
import com.earth2me.essentials.economy.register.Method;
|
||||
import com.nijiko.coelho.iConomy.iConomy;
|
||||
import com.nijiko.coelho.iConomy.system.Account;
|
||||
import org.bukkit.plugin.Plugin;
|
@@ -1,6 +1,6 @@
|
||||
package com.earth2me.essentials.register.payment.methods;
|
||||
package com.earth2me.essentials.economy.register.methods;
|
||||
|
||||
import com.earth2me.essentials.register.payment.Method;
|
||||
import com.earth2me.essentials.economy.register.Method;
|
||||
import com.iConomy.iConomy;
|
||||
import com.iConomy.system.Account;
|
||||
import com.iConomy.system.BankAccount;
|
@@ -1,6 +1,6 @@
|
||||
package com.earth2me.essentials.register.payment.methods;
|
||||
package com.earth2me.essentials.economy.register.methods;
|
||||
|
||||
import com.earth2me.essentials.register.payment.Method;
|
||||
import com.earth2me.essentials.economy.register.Method;
|
||||
import com.iCo6.iConomy;
|
||||
import com.iCo6.system.Account;
|
||||
import com.iCo6.system.Accounts;
|
@@ -5,7 +5,7 @@ import com.earth2me.essentials.api.IReload;
|
||||
import com.earth2me.essentials.api.ISettings;
|
||||
import com.earth2me.essentials.ranks.GMGroups;
|
||||
import com.earth2me.essentials.ranks.VaultGroups;
|
||||
import com.earth2me.essentials.register.payment.Methods;
|
||||
import com.earth2me.essentials.economy.register.Methods;
|
||||
import com.earth2me.essentials.settings.General;
|
||||
import com.earth2me.essentials.ranks.RanksStorage;
|
||||
import java.util.logging.Level;
|
||||
|
@@ -8,7 +8,7 @@ import com.earth2me.essentials.utils.Util;
|
||||
import com.earth2me.essentials.api.*;
|
||||
import com.earth2me.essentials.craftbukkit.InventoryWorkaround;
|
||||
import com.earth2me.essentials.permissions.Permissions;
|
||||
import com.earth2me.essentials.register.payment.Method;
|
||||
import com.earth2me.essentials.economy.register.Method;
|
||||
import com.earth2me.essentials.utils.DateUtil;
|
||||
import java.util.Calendar;
|
||||
import java.util.GregorianCalendar;
|
||||
|
Reference in New Issue
Block a user