[CI-SKIP] Add ebiekonren cmd

This commit is contained in:
Steven Tracey 2021-09-28 14:26:32 -04:00 committed by GitHub
parent 24c5fe30b0
commit f9f644d91a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,33 @@
package tech.nevets.constelliabot.commands.strings;
import tech.nevets.constelliabot.Bot;
import tech.nevets.constelliabot.commands.CommandContext;
import tech.nevets.constelliabot.commands.ICommand;
import java.util.List;
public class GoodMorningCmd implements ICommand {
@Override
public void handle(CommandContext ctx) {
ctx.getChannel().sendTyping().queue();
ctx.getChannel().sendMessage("Hmm I wonder what this command does?").queue();
ctx.getChannel().sendMessage("-EbieKonRen").queue();
}
@Override
public String getName() {
return "ebiekonren";
}
@Override
public String getHelp() {
return "Sends a good morning message\n" +
"Usage: `" + Bot.prefix + "ebiekonren`";
}
@Override
public List<String> getAliases() {
return List.of("cmd", "ebie", "everycommand");
}
}