Yeah Clyde Command

This commit is contained in:
GregTCLTK 2019-12-19 19:30:51 +01:00
parent cc710b406d
commit 860d035a63
No known key found for this signature in database
GPG key ID: A91BADE5C070FF67
2 changed files with 35 additions and 0 deletions

View file

@ -87,6 +87,7 @@ public class Hadder {
new RegionChangeCommand(),
new AboutCommand(),
new LanguageCommand(),
new ClydeCommand(),
new StarBoardCommand()), config, helpCommand);
builder.addEventListeners(

View file

@ -0,0 +1,34 @@
package com.bbn.hadder.commands.fun;
/*
* @author Skidder / GregTCLTK
*/
import com.bbn.hadder.commands.Command;
import com.bbn.hadder.commands.CommandEvent;
import com.bbn.hadder.commands.Perm;
import com.bbn.hadder.commands.Perms;
@Perms(Perm.MANAGE_SERVER)
public class ClydeCommand implements Command {
@Override
public void executed(String[] args, CommandEvent event) {
}
@Override
public String[] labels() {
return new String[]{"clyde"};
}
@Override
public String description() {
return "";
}
@Override
public String usage() {
return "<Message-Content>";
}
}