1
0

add vote command

This commit is contained in:
Lee
2024-03-28 15:12:18 +00:00
parent 48ad8a707b
commit 2ea78e5462
10 changed files with 67 additions and 20 deletions

View File

@ -4,6 +4,7 @@ import cc.fascinated.Aetheria;
import cc.fascinated.command.impl.HelpCommand;
import cc.fascinated.command.impl.SeedCommand;
import cc.fascinated.command.impl.TotalJoinsCommand;
import cc.fascinated.command.impl.VoteCommand;
import org.bukkit.command.PluginCommand;
public class CommandManager {
@ -12,6 +13,7 @@ public class CommandManager {
registerCommand(new TotalJoinsCommand());
registerCommand(new HelpCommand());
registerCommand(new SeedCommand());
registerCommand(new VoteCommand());
}
public static void registerCommand(Command command) {