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

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


public class Commandafk extends EssentialsCommand
{
	public Commandafk()
	{
		super("afk");
	}

	@Override
	public void run(Server server, User user, String commandLabel, String[] args) throws Exception
	{
		if (args.length > 0 && user.isAuthorized("essentials.afk.others"))
		{
			User afkUser = ess.getUser(ess.getServer().matchPlayer(args[0]));
			if (afkUser != null)
			{
				toggleAfk(afkUser);
			}
		}
		else
		{
			toggleAfk(user);
		}
	}

	private final void toggleAfk(User user)
	{
		if (!user.toggleAfk())
		{
			//user.sendMessage(Util.i18n("markedAsNotAway"));
			ess.broadcastMessage(user.getName(), Util.format("userIsNotAway", user.getDisplayName()));
			user.updateActivity(false);
		}
		else
		{
			//user.sendMessage(Util.i18n("markedAsAway"));
			ess.broadcastMessage(user.getName(), Util.format("userIsAway", user.getDisplayName()));
		}
	}
}