[CI-SKIP] Add ebiekonren cmd
This commit is contained in:
parent
24c5fe30b0
commit
f9f644d91a
@ -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");
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user