Signed-off-by: Chris Ward <chris@chrisgward.com>
This commit is contained in:
Chris Ward 2012-03-03 18:07:43 +11:00
parent 301b609e93
commit 6da6e4d2e8

View File

@ -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?\"..." } );
}
}