Add banip and unbanip commands, fix minor issues

This commit is contained in:
Tomasz Kuraczyk 2026-02-26 16:45:36 +01:00
parent 4fd4cc81f9
commit 3f4a9f6f36
8 changed files with 868 additions and 7 deletions

View file

@ -51,6 +51,10 @@ public final class BanHammer extends JavaPlugin {
getLogger().info(ChatColor.translateAlternateColorCodes('&', "&a&b+&r&8 | &aBan&7Hammer"));
new Ban(this);
new Unban(this);
new BanIP(this);
new UnbanIP(this);
new BHConfig(this);
getServer().getPluginManager().registerEvents(new PlayerPreLogin(this), this);
}