Greg dev #79

Merged
greg6775 merged 9 commits from greg-dev into master 2019-11-20 20:56:20 +01:00
2 changed files with 33 additions and 1 deletions
Showing only changes of commit 0a04c8185f - Show all commits

View file

@ -67,8 +67,9 @@ public class Hadder {
new FeetCommand(),
new EroticCommand(),
new RoleCommand(),
new RulesCommand(),
new LinkCommand()), config);
builder.addEventListeners(
new MentionListener(rethink),
new PrivateMessageListener(),

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 "";
}
}