forked from GeyserMC/Geyser
Merge pull request #383 from rtm516/standalone-commands-fix
Fix command execution on standalone
This commit is contained in:
commit
ba60f92722
1 changed files with 5 additions and 5 deletions
|
@ -25,10 +25,6 @@
|
|||
|
||||
package org.geysermc.platform.standalone;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.UUID;
|
||||
|
||||
import org.geysermc.common.PlatformType;
|
||||
import org.geysermc.common.bootstrap.IGeyserBootstrap;
|
||||
import org.geysermc.connector.GeyserConnector;
|
||||
|
@ -37,6 +33,10 @@ import org.geysermc.connector.utils.FileUtils;
|
|||
import org.geysermc.platform.standalone.command.GeyserCommandManager;
|
||||
import org.geysermc.platform.standalone.console.GeyserLogger;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.UUID;
|
||||
|
||||
public class GeyserBootstrap implements IGeyserBootstrap {
|
||||
|
||||
private GeyserCommandManager geyserCommandManager;
|
||||
|
@ -64,8 +64,8 @@ public class GeyserBootstrap implements IGeyserBootstrap {
|
|||
}
|
||||
|
||||
connector = GeyserConnector.start(PlatformType.STANDALONE, this);
|
||||
geyserLogger.start();
|
||||
geyserCommandManager = new GeyserCommandManager(connector);
|
||||
geyserLogger.start();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue