Skip to content

Commit

Permalink
Fix debug mod
Browse files Browse the repository at this point in the history
  • Loading branch information
zelytra committed Jul 29, 2021
1 parent f555d67 commit 1d6b413
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/main/java/fr/zelytra/daedalus/Daedalus.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import fr.zelytra.daedalus.commands.state.StateTabs;
import fr.zelytra.daedalus.commands.test;
import fr.zelytra.daedalus.commands.wiki.Wiki;
import fr.zelytra.daedalus.events.EventsManager;
import fr.zelytra.daedalus.managers.game.GameManager;
import fr.zelytra.daedalus.managers.items.CraftManager;
import fr.zelytra.daedalus.managers.setup.StartupManager;
Expand Down Expand Up @@ -50,11 +51,11 @@ public void onLoad() {
public void onEnable() {
/* Init world */
Bukkit.createWorld(new WorldCreator("daedalus"));
//checkFAWE();
checkFAWE();
/* Init registers */
//EventsManager.registerEvents(this);
EventsManager.registerEvents(this);
regCommands();
//setupServer();
setupServer();

/* Init managers */
gameManager = new GameManager();
Expand Down

0 comments on commit 1d6b413

Please sign in to comment.