summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandtop.java
blob: 5bb14a1f0aaec885f7d1f8cefdb1eb3255a9dd43 (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
package net.ess3.commands;

import static net.ess3.I18n._;
import net.ess3.api.IUser;
import net.ess3.economy.Trade;
import org.bukkit.Location;
import org.bukkit.entity.Player;
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;


public class Commandtop extends EssentialsCommand
{
	@Override
	public void run(final IUser user, final String commandLabel, final String[] args) throws Exception
	{
		final Player player = user.getPlayer();
		final Location playerLocation = user.getPlayer().getLocation();
		final int topX = playerLocation.getBlockX();
		final int topZ = playerLocation.getBlockZ();
		final int topY = playerLocation.getWorld().getHighestBlockYAt(topX, topZ);
		user.getTeleport().teleport(
				new Location(player.getWorld(), topX, topY + 1, topZ, playerLocation.getYaw(), playerLocation.getPitch()), new Trade(commandName, ess),
				TeleportCause.COMMAND);
		user.sendMessage(_("Teleporting to top."));
	}
}