From 2f007b9eaeb793aee2faa188c0f9f5b0381ed42e Mon Sep 17 00:00:00 2001 From: Roo Code Date: Thu, 17 Jul 2025 22:06:57 +0000 Subject: [PATCH] fix: allow text content to be displayed after tool use - Remove didAlreadyUseTool check from text content processing - Fixes issue where content after update_todo_list tool was being cut off - Only tool uses should be blocked after first tool, not text content - Resolves #5847 --- src/core/assistant-message/presentAssistantMessage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/assistant-message/presentAssistantMessage.ts b/src/core/assistant-message/presentAssistantMessage.ts index ee3fa148b4..2e417022dd 100644 --- a/src/core/assistant-message/presentAssistantMessage.ts +++ b/src/core/assistant-message/presentAssistantMessage.ts @@ -82,7 +82,7 @@ export async function presentAssistantMessage(cline: Task) { switch (block.type) { case "text": { - if (cline.didRejectTool || cline.didAlreadyUseTool) { + if (cline.didRejectTool) { break }