RandomTeleport

This commit is contained in:
2018-09-06 11:25:49 +02:00
parent 44556d788e
commit 2191b94b9a
3 changed files with 82 additions and 2 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.RandomTeleport;
public class MarwCore extends JavaPlugin {
@ -24,6 +25,7 @@ public class MarwCore extends JavaPlugin {
this.addFeature(new Borders(this));
this.addFeature(new ChatNotifier(this));
this.addFeature(new RandomTeleport(this));
configManager.load();
this.features.forEach((k, v) -> v.onEnable());