diff --git a/src/debugger/godot4/server_controller.ts b/src/debugger/godot4/server_controller.ts index f9949fd..afde834 100644 --- a/src/debugger/godot4/server_controller.ts +++ b/src/debugger/godot4/server_controller.ts @@ -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; } }