Greg dev #269

Merged
greg6775 merged 157 commits from greg-dev into hax-dev 2019-12-28 13:12:48 +01:00
2 changed files with 34 additions and 1 deletions
Showing only changes of commit 895d06d714 - Show all commits

View file

@ -57,6 +57,7 @@ public class Hadder {
new RebootCommand(),
new EqualsCommand(),
new InviteCommand(),
new ScreenShareCommand(),
new NickCommand(),
new PrefixCommand(),
new BlowjobCommand(),
@ -89,7 +90,8 @@ public class Hadder {
new LanguageCommand(),
new ClydeCommand(),
new PlayCommand(),
new StarBoardCommand()), config, helpCommand);
new StarBoardCommand(),
new StopCommand()), config, helpCommand);
builder.addEventListeners(
new MentionListener(rethink),

View file

@ -0,0 +1,31 @@
package com.bbn.hadder.commands.music;
import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent;
/**
* @author Skidder / GregTCLTK
*/
public class StopCommand implements Command {
@Override
public void executed(String[] args, CommandEvent event) {
}
@Override
public String[] labels() {
return new String[]{"stop"};
}
@Override
public String description() {
return "Stops the song";
}
@Override
public String usage() {
return "";
}
}