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

import org.bukkit.Server;
import org.bukkit.entity.Player;
import com.earth2me.essentials.User;
import com.earth2me.essentials.Util;
import java.util.logging.Level;


public class Commandhelpop extends EssentialsCommand
{
	public Commandhelpop()
	{
		super("helpop");
	}

	@Override
	public void run(Server server, User user, String commandLabel, String[] args) throws Exception
	{
		if (args.length < 1)
		{
			throw new NotEnoughArgumentsException();
		}

		final String message = Util.format("helpOp", user.getDisplayName(), getFinalArg(args, 0));
		logger.log(Level.INFO, message);
		for (Player p : server.getOnlinePlayers())
		{
			User u = ess.getUser(p);
			if (!u.isAuthorized("essentials.helpop.receive"))
			{
				continue;
			}
			u.sendMessage(message);
		}
	}
}