Added Language manager (untested)

This commit is contained in:
DaTTV 2025-02-19 17:31:13 +01:00
parent a2c1eb155d
commit 4678cf5fdd
14 changed files with 581 additions and 441 deletions

View file

@ -8,6 +8,7 @@ import me.freezy.plugins.papermc.blazesmp.command.ReportCommand;
import me.freezy.plugins.papermc.blazesmp.listener.*;
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.L4M4;
import me.freezy.plugins.papermc.blazesmp.module.manager.ProtectedBlocks;
import me.freezy.plugins.papermc.blazesmp.tasks.PlayerNameUpdate;
import org.bukkit.configuration.file.FileConfiguration;
@ -47,6 +48,10 @@ public final class BlazeSMP extends JavaPlugin {
saveConfig();
this.log.info("Loaded config!");
this.log.info("Loading L4M4...");
L4M4.init();
this.log.info("Loaded L4M4!");
this.log.info("Loaded BlazeSMP!");
}