summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandtpdeny.java
blob: c0dfde4468717cdef9323c011f4a0a916ef9e773 (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
package com.earth2me.essentials.commands;

import static com.earth2me.essentials.I18n.tl;
import com.earth2me.essentials.User;
import org.bukkit.Server;


public class Commandtpdeny extends EssentialsCommand
{
	public Commandtpdeny()
	{
		super("tpdeny");
	}

	@Override
	public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
	{
		final User player = ess.getUser(user.getTeleportRequest());
		if (player == null)
		{
			throw new Exception(tl("noPendingRequest"));
		}

		user.sendMessage(tl("requestDenied"));
		player.sendMessage(tl("requestDeniedFrom", user.getDisplayName()));
		user.requestTeleport(null, false);
	}
}