summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandignore.java
blob: c5bc21d4662093901cb67f05c31d517250d37a32 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.earth2me.essentials.commands;

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


public class Commandignore extends EssentialsCommand
{
	public Commandignore()
	{
		super("ignore");
	}

	@Override
	protected void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
	{
		if (args.length < 1)
		{
			StringBuilder sb = new StringBuilder();
			for (String s : user._getIgnoredPlayers())
			{
				sb.append(s).append(" ");
			}
			String ignoredList = sb.toString().trim();
			user.sendMessage(ignoredList.length() > 0 ? tl("ignoredList", ignoredList) : tl("noIgnored"));
		}
		else
		{
			User player;
			try
			{
				player = getPlayer(server, args, 0, true, true);
			}
			catch (PlayerNotFoundException ex)
			{
				player = ess.getOfflineUser(args[0]);
			}
			if (player == null)
			{
				throw new PlayerNotFoundException();
			}
			if (player.isIgnoreExempt()) {
				user.sendMessage(tl("ignoreExempt"));
			}
			else if (user.isIgnoredPlayer(player))
			{
				user.setIgnoredPlayer(player, false);
				user.sendMessage(tl("unignorePlayer", player.getName()));
			}
			else
			{
				user.setIgnoredPlayer(player, true);
				user.sendMessage(tl("ignorePlayer", player.getName()));
			}
		}
	}
}