mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-09-10 12:02:59 +02:00
Update main.js
Fixed unnecessary spacing at line 44
This commit is contained in:
parent
1f89cd8f47
commit
653f6456ab
1 changed files with 2 additions and 2 deletions
4
main.js
4
main.js
|
@ -40,8 +40,8 @@ async function main() {
|
|||
const profiles = getProfiles(args);
|
||||
console.log(profiles);
|
||||
const { load_memory, init_message } = settings;
|
||||
|
||||
for (let i = 0; i < profiles.length; i++) {
|
||||
|
||||
for (let i=0; i<profiles.length; i++) {
|
||||
const agent_process = new AgentProcess();
|
||||
const profile = readFileSync(profiles[i], 'utf8');
|
||||
const agent_json = JSON.parse(profile);
|
||||
|
|
Loading…
Add table
Reference in a new issue