Introducing Feedback Command :D

This commit is contained in:
GregTCLTK 2019-11-22 04:23:34 -08:00
parent f59d66a65f
commit 834b23832e
No known key found for this signature in database
GPG key ID: A91BADE5C070FF67
2 changed files with 32 additions and 0 deletions

View file

@ -68,6 +68,7 @@ public class Hadder {
new EroticCommand(),
new RoleCommand(),
new RulesCommand(),
new FeedbackCommand(),
new LinkCommand()), config);
builder.addEventListeners(

View file

@ -0,0 +1,31 @@
package com.bbn.hadder.commands.misc;
/*
* @author Skidder / GregTCLTK
*/
import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent;
public class FeedbackCommand implements Command {
@Override
public void executed(String[] args, CommandEvent event) {
}
@Override
public String[] labels() {
return new String[]{"feedback"};
}
@Override
public String description() {
return "Sends feedback directly to the developers.";
}
@Override
public String usage() {
return "<Feedback>";
}
}