TF-EssentialsX/Essentials/src/com/earth2me/essentials/commands/Commandsetworth.java

29 lines
642 B
Java
Raw Normal View History

package com.earth2me.essentials.commands;
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
2011-11-18 17:42:26 +00:00
import org.bukkit.Server;
import org.bukkit.inventory.ItemStack;
public class Commandsetworth extends EssentialsCommand
{
public Commandsetworth()
{
super("setworth");
}
@Override
public void run(Server server, User user, String commandLabel, String[] args) throws Exception
{
if (args.length < 2)
{
throw new NotEnoughArgumentsException();
}
ItemStack stack = ess.getItemDb().get(args[0]);
ess.getWorth().setPrice(stack, Double.parseDouble(args[1]));
user.sendMessage(Util.i18n("worthSet"));
}
}