removed emojis to make it less chatgpt-like

This commit is contained in:
uukelele 2025-05-02 07:43:44 +01:00 committed by GitHub
parent e6529c17de
commit 1108c2eb63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,12 +54,12 @@ if (process.env.SETTINGS_PATH) {
const raw = fs.readFileSync(cfgPath, 'utf-8');
const overrides = JSON.parse(raw);
Object.assign(settings, overrides);
console.log(`⚡️ Loaded overrides from ${cfgPath}`);
console.log(`Loaded overrides from ${cfgPath}`);
} else {
console.warn(`⚠️ SETTINGS_PATH file not found: ${cfgPath}`);
console.warn(`SETTINGS_PATH file not found: ${cfgPath}`);
}
} catch (err) {
console.error("🔴 Failed to load SETTINGS_PATH overrides:", err);
console.error("Failed to load SETTINGS_PATH overrides:", err);
}
}
if (process.env.MINECRAFT_PORT) {