summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandtphere.java
blob: 121e06c2ab9e45b34abea10b56d8c6169bddb160 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.earth2me.essentials.commands;

import com.earth2me.essentials.Trade;
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
import org.bukkit.Server;


public class Commandtphere extends EssentialsCommand
{
	public Commandtphere()
	{
		super("tphere");
	}

	@Override
	public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
	{
		final User player = getPlayer(server, args, 0);
		if (!player.isTeleportEnabled())
		{
			throw new Exception(Util.format("teleportDisabled", player.getDisplayName()));
		}
		player.getTeleport().teleport(user, new Trade(this.getName(), ess));
		user.sendMessage(Util.i18n("teleporting"));
		player.sendMessage(Util.i18n("teleporting"));
		throw new NoChargeException();
	}
}