1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-12 01:25:26 +02:00

Move Economy API, MoneyHolder and WorthHolder to Economy package

This commit is contained in:
snowleo
2012-03-14 03:33:41 +01:00
parent d0d71283cd
commit 30c7a3af16
8 changed files with 14 additions and 11 deletions

View File

@@ -1,5 +1,6 @@
package com.earth2me.essentials;
import com.earth2me.essentials.economy.WorthHolder;
import com.earth2me.essentials.storage.ManagedFile;
import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.api.IEssentials;
@@ -52,7 +53,7 @@ public class EssentialsUpgrade
}
final EssentialsConf conf = new EssentialsConf(configFile);
conf.load();
final Worth worth = new Worth(ess);
final WorthHolder worth = new WorthHolder(ess);
boolean found = false;
for (Material mat : Material.values())
{