28 lines
655 B
Java
28 lines
655 B
Java
package handiebot.command.commands.music;
|
|
|
|
import handiebot.HandieBot;
|
|
import handiebot.command.CommandContext;
|
|
import handiebot.command.types.ContextCommand;
|
|
|
|
import static handiebot.HandieBot.resourceBundle;
|
|
|
|
/**
|
|
* @author Andrew Lalis
|
|
* Skips the current song, if there is one playing.
|
|
*/
|
|
public class SkipCommand extends ContextCommand {
|
|
|
|
public SkipCommand() {
|
|
super("skip",
|
|
"",
|
|
resourceBundle.getString("commands.command.skip.description"),
|
|
8);
|
|
}
|
|
|
|
@Override
|
|
public void execute(CommandContext context) {
|
|
HandieBot.musicPlayer.skipTrack(context.getGuild());
|
|
}
|
|
|
|
}
|