added ;baritone command

ez
This commit is contained in:
Dewy REDACTED 2020-04-17 15:31:34 +01:00
parent 893d0fd368
commit 26452b27ca
No known key found for this signature in database
GPG Key ID: 0CAA84A783228505
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package me.zeroeightsix.kami.command.commands;
import me.zeroeightsix.kami.command.Command;
import static me.zeroeightsix.kami.util.MessageSendHelper.sendChatMessage;
/**
* Created by Dewy on the 17th of April, 2020
*/
public class BaritoneCommand extends Command {
public BaritoneCommand() {
super("baritone", null);
setDescription("Configure baritone using it's own command system. Try typing '#help'.");
}
@Override
public void call(String[] args) {
sendChatMessage("KAMI Blue has Baritone integration. To configure Baritone, use Baritone's own command system. Try #help for a command list.");
}
}