Skip to content

Commit

Permalink
Add MultiCurrency to list.
Browse files Browse the repository at this point in the history
  • Loading branch information
fernferret committed Sep 14, 2011
1 parent c2ad081 commit 18c55a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/com/fernferret/allpay/AllPay.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
* @author Eric Stokes
*/
public class AllPay {
private final double version = 2.1;
private final double version = 3;
protected final String logPrefix = "[AllPay] - Version " + version;

protected static final Logger log = Logger.getLogger("Minecraft");
private String prefix;
private Plugin plugin;
private GenericBank bank;
public final static String[] validEconPlugins = { "Essentials", "RealShop", "BOSEconomy", "iConomy" };
public final static String[] validEconPlugins = { "Essentials", "RealShop", "BOSEconomy", "iConomy", "MultiCurrency" };
public static List<String> pluginsThatUseUs = new ArrayList<String>();

public AllPay(Plugin plugin, String prefix) {
Expand Down Expand Up @@ -55,7 +55,7 @@ public GenericBank loadEconPlugin() {
public GenericBank getEconPlugin() {
return this.bank;
}

public double getVersion() {
return this.version;
}
Expand Down
1 change: 0 additions & 1 deletion src/com/fernferret/allpay/ItemBank.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.fernferret.allpay;

import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;

/**
* Special bank class that handles items. If any money (item id = -1) comes in here, it will always return true and never take away This class should be the default bank
Expand Down

0 comments on commit 18c55a9

Please sign in to comment.