Screenshare is back
This commit is contained in:
parent
e051c81221
commit
895d06d714
2 changed files with 34 additions and 1 deletions
|
|
@ -57,6 +57,7 @@ public class Hadder {
|
||||||
new RebootCommand(),
|
new RebootCommand(),
|
||||||
new EqualsCommand(),
|
new EqualsCommand(),
|
||||||
new InviteCommand(),
|
new InviteCommand(),
|
||||||
|
new ScreenShareCommand(),
|
||||||
new NickCommand(),
|
new NickCommand(),
|
||||||
new PrefixCommand(),
|
new PrefixCommand(),
|
||||||
new BlowjobCommand(),
|
new BlowjobCommand(),
|
||||||
|
|
@ -89,7 +90,8 @@ public class Hadder {
|
||||||
new LanguageCommand(),
|
new LanguageCommand(),
|
||||||
new ClydeCommand(),
|
new ClydeCommand(),
|
||||||
new PlayCommand(),
|
new PlayCommand(),
|
||||||
new StarBoardCommand()), config, helpCommand);
|
new StarBoardCommand(),
|
||||||
|
new StopCommand()), config, helpCommand);
|
||||||
|
|
||||||
builder.addEventListeners(
|
builder.addEventListeners(
|
||||||
new MentionListener(rethink),
|
new MentionListener(rethink),
|
||||||
|
|
|
||||||
31
src/main/java/com/bbn/hadder/commands/music/StopCommand.java
Normal file
31
src/main/java/com/bbn/hadder/commands/music/StopCommand.java
Normal 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 "";
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue