9
0
mirror of https://github.com/Auxilor/EcoArmor.git synced 2025-12-27 10:59:22 +00:00

Added config autoupdating for missing sections

This commit is contained in:
Auxilor
2021-10-16 19:07:20 +01:00
parent d4426d5675
commit c4d25944cc

View File

@@ -1,16 +1,17 @@
package com.willfp.ecoarmor.config;
import com.willfp.eco.core.EcoPlugin;
import com.willfp.eco.core.config.json.JSONBaseConfig;
import com.willfp.eco.core.config.json.JSONStaticBaseConfig;
import org.jetbrains.annotations.NotNull;
public class EcoArmorJson extends JSONStaticBaseConfig {
public class EcoArmorJson extends JSONBaseConfig {
/**
* Create tiers.json.
*
* @param plugin Instance of EcoArmor.
*/
public EcoArmorJson(@NotNull final EcoPlugin plugin) {
super("ecoarmor", plugin);
super("ecoarmor", false, plugin);
}
}