About Command

This commit is contained in:
GregTCLTK 2019-12-05 16:42:49 +01:00
parent 8fda2b3f42
commit 615af65253
No known key found for this signature in database
GPG key ID: A91BADE5C070FF67
2 changed files with 32 additions and 0 deletions

View file

@ -86,6 +86,7 @@ public class Hadder {
new RandomPornCommand(),
new SoloCommand(),
new RegionChangeCommand(),
new AboutCommand(),
new LinkCommand()), config, helpCommand);
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 "";
}
}