ChorusLimiter

This commit is contained in:
2018-09-13 22:54:37 +02:00
parent 4a2f9dd496
commit e103195300
2 changed files with 32 additions and 0 deletions

View File

@ -9,6 +9,7 @@ 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;
import cz.marwland.mc.essentials.features.ChorusLimiter;
import cz.marwland.mc.essentials.features.RandomTeleport;
public class MarwCore extends JavaPlugin {
@ -27,6 +28,7 @@ public class MarwCore extends JavaPlugin {
this.addFeature(new Base());
this.addFeature(new Borders());
this.addFeature(new ChatNotifier());
this.addFeature(new ChorusLimiter());
this.addFeature(new RandomTeleport());
configManager.load();