Alpha 1.0 RC02

Changelog:
  - Some visibility changes (Developers)
  - Added the Luck command.
  - Added some extra backend shortcuts
This commit is contained in:
Paldiu
2022-03-31 19:30:10 -05:00
parent 73affcf4c4
commit 93ee1e2c43
17 changed files with 221 additions and 9 deletions

View File

@ -13,6 +13,7 @@ import java.util.UUID;
public final class FeelingLucky extends JavaPlugin {
private static final Map<UUID, PlayerConfig> configMap = new HashMap<>();
public LuckCMD cmd;
public PlayerHandler handler;
public static Map<UUID, PlayerConfig> getConfigMap() {
@ -39,6 +40,10 @@ public final class FeelingLucky extends JavaPlugin {
getLogger().info("There are no player configurations to load.");
}
Bukkit.getLogger().info("Attempting to load the Luck command...");
cmd = new LuckCMD(this);
Bukkit.getLogger().info("Successfully loaded the Luck command!");
Bukkit.getLogger().info("Successfully initialized!");
}