mirror of
https://github.com/SimplexDevelopment/FeelingLucky.git
synced 2025-07-04 19:16:41 +00:00
Alpha 1.0 RC02
Changelog: - Some visibility changes (Developers) - Added the Luck command. - Added some extra backend shortcuts
This commit is contained in:
@ -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!");
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user