summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/net/ess3/update/chat/HelpCommand.java
blob: 1e82953f0016da4cac8e43f817473e9866241550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package net.ess3.update.chat;

import org.bukkit.entity.Player;


public class HelpCommand implements Command
{
	@Override
	public void run(final IrcBot ircBot, final Player player)
	{
		player.sendMessage("Commands: (Note: Files send to the chat will be public viewable.)");
		player.sendMessage("!errors - Send the last server errors to the chat.");
		player.sendMessage("!startup - Send the last startup messages to the chat.");
		player.sendMessage("!config - Sends your Essentials config to the chat.");
		player.sendMessage("!list - List all players in chat.");
		player.sendMessage("!quit - Leave chat.");
	}
}