Wrong class name

This commit is contained in:
Vortrex
2022-06-14 06:29:42 -05:00
parent 1023345e01
commit 504fb46c28

View File

@@ -10,7 +10,7 @@
/** /**
* @class Representing data for server configuration * @class Representing data for server configuration
*/ */
class ServerData { class ServerConfigData {
constructor(dbAssoc = false) { constructor(dbAssoc = false) {
this.databaseId = 0; this.databaseId = 0;
this.needsSaved = false; this.needsSaved = false;
@@ -126,6 +126,8 @@ class ServerData {
} }
}; };
// ===========================================================================
let serverConfig = false; let serverConfig = false;
let gameConfig = false; let gameConfig = false;
@@ -220,7 +222,6 @@ let globalConfig = {
function initConfigScript() { function initConfigScript() {
logToConsole(LOG_INFO, "[VRR.Config]: Initializing config script ..."); logToConsole(LOG_INFO, "[VRR.Config]: Initializing config script ...");
applyConfigToServer(serverConfig);
logToConsole(LOG_INFO, "[VRR.Config]: Config script initialized!"); logToConsole(LOG_INFO, "[VRR.Config]: Config script initialized!");
} }
@@ -1081,6 +1082,8 @@ function loadServerConfig() {
logToConsole(LOG_ERROR, `[VRR.Config] Could not load server configuration for game ${getGame()} and port ${getServerPort}`); logToConsole(LOG_ERROR, `[VRR.Config] Could not load server configuration for game ${getGame()} and port ${getServerPort}`);
thisResource.stop(); thisResource.stop();
} }
logToConsole(LOG_DEBUG | LOG_WARN, `Server ID: ${serverConfig.databaseId}`);
} }
// =========================================================================== // ===========================================================================