Disabling exp as currency. Normal money will be used.

This commit is contained in:
snowleo 2011-12-13 07:35:46 +01:00
parent fc1ccda0fe
commit 907f6c6116

View file

@ -40,7 +40,8 @@ public class Trade
public Trade(final int exp, final IEssentials ess) public Trade(final int exp, final IEssentials ess)
{ {
this(null, null, null, exp, ess); //TODO: Revert this change, when exp is fixed in Bukkit
this(null, (double)exp, null, null, ess);
} }
private Trade(final String command, final Double money, final ItemStack item, final Integer exp, final IEssentials ess) private Trade(final String command, final Double money, final ItemStack item, final Integer exp, final IEssentials ess)