summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Ward <chris@chrisgward.com>2012-03-03 18:07:43 +1100
committerChris Ward <chris@chrisgward.com>2012-03-03 18:07:43 +1100
commit03c51cdeaf5752ef7c6ca9b19936d72596cf5c07 (patch)
tree2a8603ca1e6cb4d0ed5b0d5a1fe2a2aaace30940
parentde96e09f76695504ee839692436c63a227f68082 (diff)
downloadEssentials-03c51cdeaf5752ef7c6ca9b19936d72596cf5c07.tar
Essentials-03c51cdeaf5752ef7c6ca9b19936d72596cf5c07.tar.gz
Essentials-03c51cdeaf5752ef7c6ca9b19936d72596cf5c07.tar.lz
Essentials-03c51cdeaf5752ef7c6ca9b19936d72596cf5c07.tar.xz
Essentials-03c51cdeaf5752ef7c6ca9b19936d72596cf5c07.zip
Cleanup
Signed-off-by: Chris Ward <chris@chrisgward.com>
-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?\"..." } );
+ }
}