Signed-off-by: Chris Ward <chris@chrisgward.com>
This commit is contained in:
Chris Ward 2012-03-03 18:07:43 +11:00 committed by KHobbits
parent caf598f55b
commit e6736e48a5

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