Bass Command #329

Merged
greg6775 merged 23 commits from greg-dev into master 2020-01-17 17:59:53 +01:00
2 changed files with 38 additions and 1 deletions
Showing only changes of commit 294372941e - Show all commits

View file

@ -103,7 +103,8 @@ public class Hadder {
new StopCommand(),
new BlacklistCommand(),
new PauseCommand(),
new LoopCommand()), config, helpCommand);
new LoopCommand(),
new WakaTimeCommand()), config, helpCommand);
builder.addEventListeners(
new MentionListener(rethink),

View file

@ -0,0 +1,36 @@
package com.bbn.hadder.commands.misc;
import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent;
/**
* @author Skidder / GregTCLTK
*/
public class WakaTimeCommand implements Command {
@Override
public void executed(String[] args, CommandEvent event) {
}
@Override
public String[] labels() {
return new String[]{"wakatime", "wk"};
}
@Override
public String description() {
return "Show WakaTime stats.";
}
@Override
public String usage() {
return "[WakaTime-User]";
}
@Override
public String example() {
return "@Skidder";
}
}