spectator port

This commit is contained in:
sebseb7
2026-05-21 09:43:30 +02:00
parent 5cdcfd836d
commit a02a1758b5
11 changed files with 511 additions and 8 deletions

View File

@@ -24,6 +24,16 @@ function loadConfig() {
// Apply defaults
config.proxy = Object.assign({ host: '0.0.0.0', port: 25566, onlineMode: false, maxClients: 1 }, config.proxy);
config.spectator = Object.assign(
{
enabled: true,
host: '0.0.0.0',
port: 25568,
onlineMode: false,
maxClients: 20,
},
config.spectator,
);
config.bot = Object.assign(
{
antiAfk: true,