Rules Command 1/?
This commit is contained in:
parent
a72ed14cc5
commit
0a04c8185f
2 changed files with 33 additions and 1 deletions
|
|
@ -67,8 +67,9 @@ 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(
|
||||||
new MentionListener(rethink),
|
new MentionListener(rethink),
|
||||||
new PrivateMessageListener(),
|
new PrivateMessageListener(),
|
||||||
|
|
|
||||||
|
|
@ -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 "";
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue