mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-12 18:25:33 +02:00
fixed mindserver to use correct port
This commit is contained in:
parent
afe43c000e
commit
7b5e9d7045
1 changed files with 2 additions and 2 deletions
4
main.js
4
main.js
|
@ -31,7 +31,7 @@ function getProfiles(args) {
|
||||||
|
|
||||||
async function main() {
|
async function main() {
|
||||||
if (settings.host_mindserver) {
|
if (settings.host_mindserver) {
|
||||||
const mindServer = createMindServer();
|
const mindServer = createMindServer(settings.mindserver_port);
|
||||||
}
|
}
|
||||||
mainProxy.connect();
|
mainProxy.connect();
|
||||||
|
|
||||||
|
@ -55,4 +55,4 @@ try {
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('An error occurred:', error);
|
console.error('An error occurred:', error);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue