Rules Command 1/?

This commit is contained in:
GregTCLTK 2019-11-20 09:58:27 -08:00
parent a72ed14cc5
commit 0a04c8185f
No known key found for this signature in database
GPG key ID: A91BADE5C070FF67
2 changed files with 33 additions and 1 deletions

View file

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

View file

@ -0,0 +1,31 @@
package com.bbn.hadder.commands.moderation;
/*
* @author Skidder / GregTCLTK
*/
import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent;
public class RulesCommand implements Command {
@Override
public void executed(String[] args, CommandEvent event) {
}
@Override
public String[] labels() {
return new String[]{"rules"};
}
@Override
public String description() {
return "Setup the rules on your server";
}
@Override
public String usage() {
return "";
}
}