mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 12:23:59 +00:00
Cleanup
Signed-off-by: Chris Ward <chris@chrisgward.com>
This commit is contained in:
parent
301b609e93
commit
6da6e4d2e8
1 changed files with 9 additions and 0 deletions
|
@ -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?\"..." } );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue