fix Godot4.x debug console print multiple logs into one line. (#571)

This commit is contained in:
kaluluosi111
2024-01-24 05:13:56 +08:00
committed by GitHub
parent 4ae31bf99d
commit 605fe7fa1c

View File

@@ -393,8 +393,10 @@ export class ServerController {
this.didFirstOutput = true;
// this.request_scene_tree();
}
debug.activeDebugConsole.appendLine(command.parameters[0]);
const lines = command.parameters[0];
for (const line of lines) {
debug.activeDebugConsole.appendLine(line);
}
break;
}
}