9
0
mirror of https://github.com/Auxilor/EcoSkills.git synced 2026-01-06 15:51:52 +00:00

Added extension support

This commit is contained in:
Auxilor
2021-10-05 18:55:30 +01:00
parent 382d361f2b
commit f52722725d

View File

@@ -51,11 +51,11 @@ public class EcoSkillsPlugin extends EcoPlugin {
* Internal constructor called by bukkit on plugin load.
*/
public EcoSkillsPlugin() {
super(1351, 12205, "&#ff00ae");
super(1351, 12205, "&#ff00ae", true);
instance = this;
effectsYml = new EffectsYml(this);
dataHandler = this.getConfigYml().getBool("mysql.enabled") ?
new MySQLDataHandler(this) : new YamlDataHandler(this);
dataHandler = this.getConfigYml().getBool("mysql.enabled")
? new MySQLDataHandler(this) : new YamlDataHandler(this);
}
@Override