ChatNotifier: finished

This commit is contained in:
2018-09-06 10:35:17 +02:00
parent b4d9776a19
commit 44556d788e
2 changed files with 21 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import cz.marwland.mc.core.config.ConfigManager;
import cz.marwland.mc.core.features.Base;
import cz.marwland.mc.core.features.Feature;
import cz.marwland.mc.essentials.features.Borders;
import cz.marwland.mc.essentials.features.ChatNotifier;
public class MarwCore extends JavaPlugin {
@ -22,6 +23,7 @@ public class MarwCore extends JavaPlugin {
this.addFeature(new Base(this));
this.addFeature(new Borders(this));
this.addFeature(new ChatNotifier(this));
configManager.load();
this.features.forEach((k, v) -> v.onEnable());