Skip to content

Commit

Permalink
Use configKey instead of "key"
Browse files Browse the repository at this point in the history
  • Loading branch information
Toby-Lawrance committed Jan 14, 2024
1 parent 8720f36 commit 3b67760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion screeps-start.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const start = async () => {

for (const [configKey, optionsKey] of Object.entries(ServerConfigMap)) {
if (configKey in config.serverOptions) {
options[optionsKey] = config.serverOptions[key];
options[optionsKey] = config.serverOptions[configKey];
}
}

Expand Down

0 comments on commit 3b67760

Please sign in to comment.