Greg dev #155

Merged
greg6775 merged 6 commits from greg-dev into master 2019-12-05 16:58:29 +01:00
2 changed files with 32 additions and 0 deletions
Showing only changes of commit 615af65253 - Show all commits

View file

@ -86,6 +86,7 @@ public class Hadder {
new RandomPornCommand(), new RandomPornCommand(),
new SoloCommand(), new SoloCommand(),
new RegionChangeCommand(), new RegionChangeCommand(),
new AboutCommand(),
new LinkCommand()), config, helpCommand); new LinkCommand()), config, helpCommand);
builder.addEventListeners( builder.addEventListeners(

View file

@ -0,0 +1,31 @@
package com.bbn.hadder.commands.general;
/*
* @author Skidder / GregTCLTK
*/
import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent;
public class AboutCommand implements Command {
@Override
public void executed(String[] args, CommandEvent event) {
}
@Override
public String[] labels() {
return new String[]{"about", "info"};
}
@Override
public String description() {
return "Shows infos about Hadder";
}
@Override
public String usage() {
return "";
}
}