summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/com/earth2me/essentials/update/chat/HelpCommand.java
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-10-27 00:03:16 +0200
committersnowleo <schneeleo@gmail.com>2011-10-27 00:03:16 +0200
commit60b9d4fc80c881ce5548f7387c3de0d9fc5a7637 (patch)
treeca3fb9676c76f8700bda0bd21f9ffcc579d46c42 /EssentialsUpdate/src/com/earth2me/essentials/update/chat/HelpCommand.java
parent7622c5c5108f406d3fbb285de0d2446fdc3127dd (diff)
downloadEssentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.tar
Essentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.tar.gz
Essentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.tar.lz
Essentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.tar.xz
Essentials-60b9d4fc80c881ce5548f7387c3de0d9fc5a7637.zip
Some cleanup, refactoring of EssentialsHelp class
Diffstat (limited to 'EssentialsUpdate/src/com/earth2me/essentials/update/chat/HelpCommand.java')
-rw-r--r--EssentialsUpdate/src/com/earth2me/essentials/update/chat/HelpCommand.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/EssentialsUpdate/src/com/earth2me/essentials/update/chat/HelpCommand.java b/EssentialsUpdate/src/com/earth2me/essentials/update/chat/HelpCommand.java
new file mode 100644
index 000000000..a6f76cece
--- /dev/null
+++ b/EssentialsUpdate/src/com/earth2me/essentials/update/chat/HelpCommand.java
@@ -0,0 +1,18 @@
+package com.earth2me.essentials.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.");
+ }
+}