9
0
mirror of https://github.com/HibiscusMC/HMCCosmetics.git synced 2025-12-28 03:19:15 +00:00

Added oraxen item support

This commit is contained in:
HeroBrineGoat
2022-01-17 18:33:29 -05:00
parent b2465c8b13
commit 3c8c585634
18 changed files with 226 additions and 33 deletions

View File

@@ -35,7 +35,6 @@ public class HMCCosmetics extends JavaPlugin {
private MessageHandler messageHandler;
private CosmeticsMenu cosmeticsMenu;
private CommandManager commandManager;
private boolean papiEnabled;
private Database database;
@Override
@@ -56,8 +55,6 @@ public class HMCCosmetics extends JavaPlugin {
this.database = DatabaseFactory.create(this);
this.database.load();
this.papiEnabled = Bukkit.getPluginManager().getPlugin("PlaceholderAPI") != null;
this.registerCommands();
this.registerListeners();
}
@@ -126,9 +123,5 @@ public class HMCCosmetics extends JavaPlugin {
public Database getDatabase() {
return database;
}
public boolean isPapiEnabled() {
return papiEnabled;
}
}