๐ฅ๏ธGetting Started
1. Adding HLootChest as a soft dependency.โ
softdepend: [HLootchest]2. Adding HLootChest existence check.โ
@Override
public void onEnable() {
if (Bukkit.getPluginManager().getPlugin("HLootchest") == null) {
getLogger().severe("HLootchest wasn't found. Disabling...");
Bukkit.getPluginManager().disablePlugin(this);
return;
}
}3. Initializing the APIโ
Last updated