Screenshare is back

This commit is contained in:
GregTCLTK 2019-12-22 09:57:40 +01:00
parent e051c81221
commit 895d06d714
No known key found for this signature in database
GPG key ID: A91BADE5C070FF67
2 changed files with 34 additions and 1 deletions

View file

@ -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),

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 "";
}
}