summaryrefslogtreecommitdiffstats
path: root/Essentials
diff options
context:
space:
mode:
authorChris Ward <chris@chrisgward.com>2012-03-03 18:07:43 +1100
committerKHobbits <rob@khobbits.co.uk>2012-03-05 08:35:48 +0000
commite6736e48a5da9a3dd8480fef3640eae85f4b13ce (patch)
tree743e98cbdf53e11b8185894cac2f7f1e51def782 /Essentials
parentcaf598f55b271cf1e009c8073cb4d13538559a73 (diff)
downloadEssentials-e6736e48a5da9a3dd8480fef3640eae85f4b13ce.tar
Essentials-e6736e48a5da9a3dd8480fef3640eae85f4b13ce.tar.gz
Essentials-e6736e48a5da9a3dd8480fef3640eae85f4b13ce.tar.lz
Essentials-e6736e48a5da9a3dd8480fef3640eae85f4b13ce.tar.xz
Essentials-e6736e48a5da9a3dd8480fef3640eae85f4b13ce.zip
Cleanup
Signed-off-by: Chris Ward <chris@chrisgward.com>
Diffstat (limited to 'Essentials')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandessentials.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
index 14bbf5e02..0f390f4e0 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandessentials.java
@@ -35,6 +35,10 @@ public class Commandessentials extends EssentialsCommand
{
run_nya(server, sender, commandLabel, args);
}
+ else if (args[0].equalsIgnoreCase("moo"))
+ {
+ run_moo(server, sender, commandLabel, args);
+ }
else {
run_reload(server, sender, commandLabel, args);
}
@@ -159,4 +163,9 @@ public class Commandessentials extends EssentialsCommand
}
noteBlocks.clear();
}
+
+ private void run_moo(final Server server, final CommandSender sender, final String command, final String args[])
+ {
+ sender.sendMessage(new String[]{" (__)", " (oo)", " /------\\/", " / | ||", " * /\\---/\\", " ~~ ~~", "....\"Have you mooed today?\"..." } );
+ }
}