Beta 20220411-SNAPSHOT

Changelog:
 - Added ExpBoost feature
 - Added Special Rabbit Foot, which increases a user's luck multiplier.
 - Added ItemBuilder and MiniComponent library classes
 - Removed Messages#builder in favor of MiniComponent
This commit is contained in:
Paldiu
2022-04-11 10:29:18 -05:00
parent ea50032a89
commit 899768819e
25 changed files with 199 additions and 32 deletions

View File

@ -3,6 +3,7 @@ package io.github.simplex.luck;
import io.github.simplex.luck.listener.*;
import io.github.simplex.luck.player.PlayerConfig;
import io.github.simplex.luck.player.PlayerHandler;
import io.github.simplex.luck.util.LuckCMD;
import org.bukkit.Bukkit;
import org.bukkit.plugin.java.JavaPlugin;
@ -33,6 +34,7 @@ public final class FeelingLucky extends JavaPlugin {
new TakeDamage(this);
new RestoreHunger(this);
new EnchantmentBoost(this);
new ExpBoost(this);
getLogger().info("Registration complete! Attempting to load all player configuration files...");
File[] files = getDataFolder().listFiles();