Added ClanCommand and implemented tabcompletor

This commit is contained in:
DaTTV 2025-02-16 20:47:39 +01:00
parent a1a6f21624
commit 8bc458c468
8 changed files with 351 additions and 14 deletions

View file

@ -1,6 +1,7 @@
package me.freezy.plugins.papermc.blazesmp;
import lombok.Getter;
import me.freezy.plugins.papermc.blazesmp.command.ClanCommand;
import me.freezy.plugins.papermc.blazesmp.module.manager.Clans;
import me.freezy.plugins.papermc.blazesmp.module.manager.Homes;
import me.freezy.plugins.papermc.blazesmp.module.manager.ProtectedBlocks;
@ -46,6 +47,9 @@ public final class BlazeSMP extends JavaPlugin {
public void onEnable() {
BlazeSMP.instance=this;
this.log.info("Registering Commands...");
new ClanCommand().register();
this.log.info("Registered Commands!");
}
@Override